39 lines
867 B
Go
39 lines
867 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual findAllRefsPrivateNameMethods"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestFindAllRefsPrivateNameMethods(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `class C {
|
|
/*1*/#foo(){ }
|
|
constructor() {
|
|
this./*2*/#foo();
|
|
}
|
|
}
|
|
class D extends C {
|
|
constructor() {
|
|
super()
|
|
this.#foo = 20;
|
|
}
|
|
}
|
|
class E {
|
|
/*3*/#foo(){ }
|
|
constructor() {
|
|
this./*4*/#foo();
|
|
}
|
|
}`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.VerifyBaselineFindAllReferences(t, "1", "2", "3", "4")
|
|
}
|