// Code generated by convertFourslash; DO NOT EDIT. // To modify this test, run "npm run makemanual inlayHintsNoHintWhenArgumentMatchesName" package fourslash_test import ( "testing" "github.com/microsoft/typescript-go/internal/core" "github.com/microsoft/typescript-go/internal/fourslash" "github.com/microsoft/typescript-go/internal/ls/lsutil" "github.com/microsoft/typescript-go/internal/testutil" ) func TestInlayHintsNoHintWhenArgumentMatchesName(t *testing.T) { fourslash.SkipIfFailing(t) t.Parallel() defer testutil.RecoverAndFail(t, "Panic on fourslash test") const content = `function foo (a: number, b: number) {} declare const a: 1; foo(a, 2); declare const v: any; foo(v.a, v.a); foo(v.b, v.b); foo(v.c, v.c);` f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content) defer done() f.VerifyBaselineInlayHints(t, nil /*span*/, &lsutil.UserPreferences{InlayHints: lsutil.InlayHintsPreferences{IncludeInlayParameterNameHints: lsutil.IncludeInlayParameterNameHintsAll, IncludeInlayParameterNameHintsWhenArgumentMatchesName: core.TSFalse}}) }