32 lines
851 B
Go
32 lines
851 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual findAllRefsObjectBindingElementPropertyName04"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestFindAllRefsObjectBindingElementPropertyName04(t *testing.T) {
|
|
fourslash.SkipIfFailing(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, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.VerifyBaselineFindAllReferences(t, "0", "1", "2", "3")
|
|
}
|