59 lines
1.6 KiB
Go
59 lines
1.6 KiB
Go
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
|
|
. "efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash/tests/util"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
|
|
)
|
|
|
|
func TestCompletionsMergedDeclarations1(t *testing.T) {
|
|
t.Parallel()
|
|
t.Skip()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `interface Point {
|
|
x: number;
|
|
y: number;
|
|
}
|
|
function point(x: number, y: number): Point {
|
|
return { x: x, y: y };
|
|
}
|
|
module point {
|
|
export var origin = point(0, 0);
|
|
export function equals(p1: Point, p2: Point) {
|
|
return p1.x == p2.x && p1.y == p2.y;
|
|
}
|
|
}
|
|
var p1 = /*1*/point(0, 0);
|
|
var p2 = point./*2*/origin;
|
|
var b = point./*3*/equals(p1, p2);`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.VerifyCompletions(t, "1", &fourslash.CompletionsExpectedList{
|
|
IsIncomplete: false,
|
|
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
|
CommitCharacters: &[]string{},
|
|
EditRange: Ignored,
|
|
},
|
|
Items: &fourslash.CompletionsExpectedItems{
|
|
Includes: []fourslash.CompletionsExpectedItem{
|
|
"point",
|
|
},
|
|
},
|
|
})
|
|
f.VerifyCompletions(t, []string{"2", "3"}, &fourslash.CompletionsExpectedList{
|
|
IsIncomplete: false,
|
|
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
|
CommitCharacters: &DefaultCommitCharacters,
|
|
EditRange: Ignored,
|
|
},
|
|
Items: &fourslash.CompletionsExpectedItems{
|
|
Exact: CompletionFunctionMembersWithPrototypePlus(
|
|
[]fourslash.CompletionsExpectedItem{
|
|
"equals",
|
|
"origin",
|
|
}),
|
|
},
|
|
})
|
|
}
|