45 lines
1.1 KiB
Go
45 lines
1.1 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 TestObjectLiteralBindingInParameter(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `interface I { x1: number; x2: string }
|
|
function f(cb: (ev: I) => any) { }
|
|
f(({/*1*/}) => 0);
|
|
[<I>null].reduce(({/*2*/}, b) => b);
|
|
interface Foo {
|
|
m(x: { x1: number, x2: number }): void;
|
|
prop: I;
|
|
}
|
|
let x: Foo = {
|
|
m({ /*3*/ }) {
|
|
},
|
|
get prop(): I { return undefined; },
|
|
set prop({ /*4*/ }) {
|
|
}
|
|
};`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.VerifyCompletions(t, f.Markers(), &fourslash.CompletionsExpectedList{
|
|
IsIncomplete: false,
|
|
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
|
CommitCharacters: &DefaultCommitCharacters,
|
|
EditRange: Ignored,
|
|
},
|
|
Items: &fourslash.CompletionsExpectedItems{
|
|
Exact: []fourslash.CompletionsExpectedItem{
|
|
"x1",
|
|
"x2",
|
|
},
|
|
},
|
|
})
|
|
}
|