30 lines
607 B
Go
30 lines
607 B
Go
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
|
|
)
|
|
|
|
func TestGoToDefinitionExpandoClass2(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @strict: true
|
|
// @allowJs: true
|
|
// @checkJs: true
|
|
// @filename: index.js
|
|
const Core = {}
|
|
|
|
Core.Test = class {
|
|
constructor() { }
|
|
}
|
|
|
|
Core.Test.prototype.foo = 10
|
|
|
|
new Core.Tes/*1*/t()`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.VerifyBaselineGoToDefinition(t, "1")
|
|
}
|