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

29 lines
611 B
Go

package fourslash_test
import (
"testing"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
)
func TestFindAllRefsInheritedProperties4(t *testing.T) {
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `interface C extends D {
/*0*/prop0: string;
/*1*/prop1: number;
}
interface D extends C {
/*2*/prop0: string;
}
var d: D;
d./*3*/prop0;
d./*4*/prop1;`
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
f.VerifyBaselineFindAllReferences(t, "0", "2", "3", "1", "4")
}