kittenipc/kitcom/internal/tsgo/fourslash/tests/gen/getOccurrencesSuper2_test.go
2025-10-15 10:12:44 +03:00

67 lines
1.4 KiB
Go

package fourslash_test
import (
"testing"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
. "efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash/tests/util"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
)
func TestGetOccurrencesSuper2(t *testing.T) {
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `class SuperType {
superMethod() {
}
static superStaticMethod() {
return 10;
}
}
class SubType extends SuperType {
public prop1 = super.superMethod;
private prop2 = super.superMethod;
constructor() {
super();
}
public method1() {
return super.superMethod();
}
private method2() {
return super.superMethod();
}
public method3() {
var x = () => super.superMethod();
// Bad but still gets highlighted
function f() {
super.superMethod();
}
}
// Bad but still gets highlighted.
public static statProp1 = [|super|].superStaticMethod;
public static staticMethod1() {
return [|super|].superStaticMethod();
}
private static staticMethod2() {
return [|supe/**/r|].superStaticMethod();
}
// Are not actually 'super' keywords.
super = 10;
static super = 20;
}`
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
f.VerifyBaselineDocumentHighlights(t, nil /*preferences*/, ToAny(f.Ranges())...)
}