30 lines
635 B
Go
30 lines
635 B
Go
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
|
|
)
|
|
|
|
func TestGetOccurrencesOfUndefinedSymbol(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `var obj1: {
|
|
(bar: any): any;
|
|
new (bar: any): any;
|
|
[bar: any]: any;
|
|
bar: any;
|
|
foob(bar: any): any;
|
|
};
|
|
|
|
class cls3 {
|
|
property zeFunc() {
|
|
super.ceFun/**/c();
|
|
}
|
|
}`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.VerifyBaselineDocumentHighlights(t, nil /*preferences*/, "")
|
|
}
|