63 lines
1.8 KiB
Go
63 lines
1.8 KiB
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual completionsOverridingMethod10"
|
|
|
|
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/ls"
|
|
"github.com/microsoft/typescript-go/internal/lsp/lsproto"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestCompletionsOverridingMethod10(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @Filename: a.ts
|
|
// @newline: LF
|
|
interface Base {
|
|
a: string;
|
|
b(a: string): void;
|
|
c(a: string): string;
|
|
c(a: number): number;
|
|
}
|
|
class Sub implements Base {
|
|
/*a*/
|
|
}`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.VerifyCompletions(t, "a", &fourslash.CompletionsExpectedList{
|
|
IsIncomplete: false,
|
|
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
|
CommitCharacters: &[]string{},
|
|
EditRange: Ignored,
|
|
},
|
|
Items: &fourslash.CompletionsExpectedItems{
|
|
Includes: []fourslash.CompletionsExpectedItem{
|
|
&lsproto.CompletionItem{
|
|
Label: "a",
|
|
InsertText: new("a: string;"),
|
|
FilterText: new("a"),
|
|
SortText: new(string(ls.SortTextLocationPriority)),
|
|
},
|
|
&lsproto.CompletionItem{
|
|
Label: "b",
|
|
InsertText: new("b(a: string): void {\n}"),
|
|
FilterText: new("b"),
|
|
SortText: new(string(ls.SortTextLocationPriority)),
|
|
},
|
|
&lsproto.CompletionItem{
|
|
Label: "c",
|
|
InsertText: new("c(a: string): string;\nc(a: number): number;\nc(a: unknown): string | number {\n}"),
|
|
FilterText: new("c"),
|
|
SortText: new(string(ls.SortTextLocationPriority)),
|
|
},
|
|
},
|
|
},
|
|
})
|
|
}
|