28 lines
587 B
Go
28 lines
587 B
Go
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
|
|
)
|
|
|
|
func TestGoToDefinitionExpandoClass1(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 { }
|
|
|
|
Core.Test.prototype.foo = 10
|
|
|
|
new Core.Tes/*1*/t()`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.VerifyBaselineGoToDefinition(t, "1")
|
|
}
|