75 lines
1.9 KiB
Go
75 lines
1.9 KiB
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual getJavaScriptQuickInfo8"
|
|
|
|
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 TestGetJavaScriptQuickInfo8(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @allowNonTsExtensions: true
|
|
// @Filename: file.js
|
|
let x = {
|
|
/** @type {number} */
|
|
get m() {
|
|
return undefined;
|
|
}
|
|
}
|
|
x.m/*1*/;
|
|
|
|
class Foo {
|
|
/** @type {string} */
|
|
get b() {
|
|
return undefined;
|
|
}
|
|
}
|
|
var y = new Foo();
|
|
y.b/*2*/;`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.GoToMarker(t, "1")
|
|
f.Insert(t, ".")
|
|
f.VerifyCompletions(t, nil, &fourslash.CompletionsExpectedList{
|
|
IsIncomplete: false,
|
|
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
|
CommitCharacters: &DefaultCommitCharacters,
|
|
EditRange: Ignored,
|
|
},
|
|
Items: &fourslash.CompletionsExpectedItems{
|
|
Includes: []fourslash.CompletionsExpectedItem{
|
|
&lsproto.CompletionItem{
|
|
Label: "toFixed",
|
|
Kind: new(lsproto.CompletionItemKindMethod),
|
|
},
|
|
},
|
|
},
|
|
})
|
|
f.Backspace(t, 1)
|
|
f.GoToMarker(t, "2")
|
|
f.Insert(t, ".")
|
|
f.VerifyCompletions(t, nil, &fourslash.CompletionsExpectedList{
|
|
IsIncomplete: false,
|
|
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
|
CommitCharacters: &DefaultCommitCharacters,
|
|
EditRange: Ignored,
|
|
},
|
|
Items: &fourslash.CompletionsExpectedItems{
|
|
Includes: []fourslash.CompletionsExpectedItem{
|
|
&lsproto.CompletionItem{
|
|
Label: "substring",
|
|
Kind: new(lsproto.CompletionItemKindMethod),
|
|
},
|
|
},
|
|
},
|
|
})
|
|
}
|