// Code generated by convertFourslash; DO NOT EDIT. // To modify this test, run "npm run makemanual quickInfoJsDoc" package fourslash_test import ( "testing" "github.com/microsoft/typescript-go/internal/fourslash" "github.com/microsoft/typescript-go/internal/testutil" ) func TestQuickInfoJsDoc(t *testing.T) { fourslash.SkipIfFailing(t) t.Parallel() defer testutil.RecoverAndFail(t, "Panic on fourslash test") const content = `// @target: esnext /** * A constant * @deprecated */ var foo = "foo"; /** * A function * @deprecated */ function fn() { } /** * A class * @deprecated */ class C { /** * A field * @deprecated */ field = "field"; /** * A getter * @deprecated */ get getter() { return; } /** * A method * @deprecated */ m() { } get a() { this.field/*0*/; this.getter/*1*/; this.m/*2*/; foo/*3*/; C/*4*//; fn()/*5*/; return 1; } set a(value: number) { this.field/*6*/; this.getter/*7*/; this.m/*8*/; foo/*9*/; C/*10*/; fn/*11*/(); } }` f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content) defer done() f.VerifyBaselineHover(t) }