Files
kjol/tools/tsgo/internal/fourslash/tests/gen/codeFixSpellingJs6_test.go
2026-07-09 16:50:43 -04:00

72 lines
1.5 KiB
Go

// Code generated by convertFourslash; DO NOT EDIT.
// To modify this test, run "npm run makemanual codeFixSpellingJs6"
package fourslash_test
import (
"testing"
"github.com/microsoft/typescript-go/internal/fourslash"
"github.com/microsoft/typescript-go/internal/testutil"
)
func TestCodeFixSpellingJs6(t *testing.T) {
fourslash.SkipIfFailing(t)
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `// @allowjs: true
// @checkjs: false
// @noEmit: true
// @filename: spellingUncheckedJS.js
export var inModule = 1
inmodule.toFixed()
function f() {
var locals = 2 + true
locale.toFixed()
}
class Classe {
non = 'oui'
methode() {
// no error on 'this' references
return this.none
}
}
class Derivee extends Classe {
methode() {
// no error on 'super' references
return super.none
}
}
var object = {
spaaace: 3
}
object.spaaaace // error on read
object.spaace = 12 // error on write
object.fresh = 12 // OK
other.puuuce // OK, from another file
new Date().getGMTDate() // OK, from another file
// No suggestions for globals from other files
const atoc = setIntegral(() => console.log('ok'), 500)
AudioBuffin // etc
Jimmy
Jon
window.argle
self.blargle
// @filename: other.js
var Jimmy = 1
var John = 2
Jon // error, it's from the same file
var other = {
puuce: 4
}
window.argle
self.blargle`
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
defer done()
f.VerifyNoErrors(t)
}