28 lines
662 B
Go
28 lines
662 B
Go
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
|
|
)
|
|
|
|
func TestFindAllRefsObjectBindingElementPropertyName04(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `interface I {
|
|
/*0*/property1: number;
|
|
property2: string;
|
|
}
|
|
|
|
function f({ /*1*/property1: p1 }: I,
|
|
{ /*2*/property1 }: I,
|
|
{ property1: p2 }) {
|
|
|
|
return /*3*/property1 + 1;
|
|
}`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.VerifyBaselineFindAllReferences(t, "0", "1", "2", "3")
|
|
}
|