Files
kjol/tools/tsgo/internal/fourslash/tests/gen/argumentsAreAvailableAfterEditsAtEndOfFunction_test.go
2026-07-09 16:50:43 -04:00

47 lines
1.3 KiB
Go

// Code generated by convertFourslash; DO NOT EDIT.
// To modify this test, run "npm run makemanual argumentsAreAvailableAfterEditsAtEndOfFunction"
package fourslash_test
import (
"testing"
"github.com/microsoft/typescript-go/internal/fourslash"
. "github.com/microsoft/typescript-go/internal/fourslash/tests/util"
"github.com/microsoft/typescript-go/internal/lsp/lsproto"
"github.com/microsoft/typescript-go/internal/testutil"
)
func TestArgumentsAreAvailableAfterEditsAtEndOfFunction(t *testing.T) {
fourslash.SkipIfFailing(t)
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `namespace Test1 {
class Person {
children: string[];
constructor(public name: string, children: string[]) {
/**/
}
}
}`
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
defer done()
f.GoToMarker(t, "")
f.Insert(t, "this.children = ch")
f.VerifyCompletions(t, nil, &fourslash.CompletionsExpectedList{
IsIncomplete: false,
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
CommitCharacters: &[]string{},
EditRange: Ignored,
},
Items: &fourslash.CompletionsExpectedItems{
Includes: []fourslash.CompletionsExpectedItem{
&lsproto.CompletionItem{
Label: "children",
Detail: new("(parameter) children: string[]"),
},
},
},
})
}