// Code generated by convertFourslash; DO NOT EDIT. // To modify this test, run "npm run makemanual signatureHelpObjectLiteral" package fourslash_test import ( "testing" "github.com/microsoft/typescript-go/internal/fourslash" "github.com/microsoft/typescript-go/internal/testutil" ) func TestSignatureHelpObjectLiteral(t *testing.T) { fourslash.SkipIfFailing(t) t.Parallel() defer testutil.RecoverAndFail(t, "Panic on fourslash test") const content = `var objectLiteral = { n: 5, s: "", f: (a: number, b: string) => "" }; objectLiteral.f(/*objectLiteral1*/4, /*objectLiteral2*/"");` f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content) defer done() f.GoToMarker(t, "objectLiteral1") f.VerifySignatureHelp(t, fourslash.VerifySignatureHelpOptions{Text: "f(a: number, b: string): string", ParameterCount: 2, ParameterName: "a", ParameterSpan: "a: number"}) f.GoToMarker(t, "objectLiteral2") f.VerifySignatureHelp(t, fourslash.VerifySignatureHelpOptions{Text: "f(a: number, b: string): string", ParameterName: "b", ParameterSpan: "b: string"}) }