package fourslash_test import ( "testing" "github.com/microsoft/typescript-go/internal/fourslash" "github.com/microsoft/typescript-go/internal/ls/lsutil" "github.com/microsoft/typescript-go/internal/lsp/lsproto" "github.com/microsoft/typescript-go/internal/testutil" ) func TestInlayHintsInteractiveParameterNamesInSpan1(t *testing.T) { t.Parallel() defer testutil.RecoverAndFail(t, "Panic on fourslash test") const content = `function foo1 (a: number, b: number) {} function foo2 (c: number, d: number) {} function foo3 (e: number, f: number) {} function foo4 (g: number, h: number) {} function foo5 (i: number, j: number) {} function foo6 (k: number, i: number) {} function c1 () { foo1(/*a*/1, /*b*/2); } function c2 () { foo2(/*c*/1, /*d*/2); } function c3 () { foo3(/*e*/1, /*f*/2); } function c4 () { foo4(/*g*/1, /*h*/2); } function c5 () { foo5(/*i*/1, /*j*/2); } function c6 () { foo6(/*k*/1, /*l*/2); }` f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content) defer done() start := f.MarkerByName(t, "c") end := f.MarkerByName(t, "h") span := &lsproto.Range{Start: start.LSPosition, End: end.LSPosition} f.VerifyBaselineInlayHints(t, span, &lsutil.UserPreferences{ InlayHints: lsutil.InlayHintsPreferences{ IncludeInlayParameterNameHints: "literals", }, }) }