// Code generated by convertFourslash; DO NOT EDIT. // To modify this test, run "npm run makemanual inlayHintsInteractiveJsDocParameterNames" 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/testutil" ) func TestInlayHintsInteractiveJsDocParameterNames(t *testing.T) { fourslash.SkipIfFailing(t) t.Parallel() defer testutil.RecoverAndFail(t, "Panic on fourslash test") const content = `// @allowJs: true // @checkJs: true // @Filename: /a.js var x x.foo(1, 2); /** * @type {{foo: (a: number, b: number) => void}} */ var y y.foo(1, 2) /** * @type {string} */ var z = ""` f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content) defer done() f.GoToFile(t, "/a.js") f.VerifyBaselineInlayHints(t, nil /*span*/, &lsutil.UserPreferences{InlayHints: lsutil.InlayHintsPreferences{IncludeInlayParameterNameHints: lsutil.IncludeInlayParameterNameHintsLiterals}}) }