// Code generated by convertFourslash; DO NOT EDIT. // To modify this test, run "npm run makemanual referencesForClassLocal" package fourslash_test import ( "testing" "github.com/microsoft/typescript-go/internal/fourslash" "github.com/microsoft/typescript-go/internal/testutil" ) func TestReferencesForClassLocal(t *testing.T) { fourslash.SkipIfFailing(t) t.Parallel() defer testutil.RecoverAndFail(t, "Panic on fourslash test") const content = `var n = 14; class foo { /*1*/private /*2*/n = 0; public bar() { this./*3*/n = 9; } constructor() { this./*4*/n = 4; } public bar2() { var n = 12; } }` f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content) defer done() f.VerifyBaselineFindAllReferences(t, "1", "2", "3", "4") }