24 lines
617 B
Go
24 lines
617 B
Go
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
|
|
)
|
|
|
|
func TestGoToDefinitionVariableAssignment1(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @allowJs: true
|
|
// @checkJs: true
|
|
// @filename: foo.js
|
|
const Foo = module./*def*/exports = function () {}
|
|
Foo.prototype.bar = function() {}
|
|
new [|Foo/*ref*/|]();`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.GoToFile(t, "foo.js")
|
|
f.VerifyBaselineGoToDefinition(t, "ref")
|
|
}
|