61 lines
1.6 KiB
Go
61 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/ls"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/lsp/lsproto"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
|
|
)
|
|
|
|
func TestGetJavaScriptCompletions20(t *testing.T) {
|
|
t.Parallel()
|
|
t.Skip()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @allowNonTsExtensions: true
|
|
// @Filename: file.js
|
|
/**
|
|
* A person
|
|
* @constructor
|
|
* @param {string} name - The name of the person.
|
|
* @param {number} age - The age of the person.
|
|
*/
|
|
function Person(name, age) {
|
|
this.name = name;
|
|
this.age = age;
|
|
}
|
|
|
|
|
|
Person.getName = 10;
|
|
Person.getNa/**/ = 10;`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.VerifyCompletions(t, "", &fourslash.CompletionsExpectedList{
|
|
IsIncomplete: false,
|
|
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
|
CommitCharacters: &DefaultCommitCharacters,
|
|
EditRange: Ignored,
|
|
},
|
|
Items: &fourslash.CompletionsExpectedItems{
|
|
Exact: CompletionFunctionMembersWithPrototypePlus(
|
|
[]fourslash.CompletionsExpectedItem{
|
|
"getName",
|
|
"getNa",
|
|
&lsproto.CompletionItem{
|
|
Label: "Person",
|
|
SortText: PtrTo(string(ls.SortTextJavascriptIdentifiers)),
|
|
},
|
|
&lsproto.CompletionItem{
|
|
Label: "name",
|
|
SortText: PtrTo(string(ls.SortTextJavascriptIdentifiers)),
|
|
},
|
|
&lsproto.CompletionItem{
|
|
Label: "age",
|
|
SortText: PtrTo(string(ls.SortTextJavascriptIdentifiers)),
|
|
},
|
|
}),
|
|
},
|
|
})
|
|
}
|