vendor tsgo
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
// Code generated by convertFourslash; DO NOT EDIT.
|
||||
// To modify this test, run "npm run makemanual jsDocGenerics1"
|
||||
|
||||
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 TestJsDocGenerics1(t *testing.T) {
|
||||
fourslash.SkipIfFailing(t)
|
||||
t.Parallel()
|
||||
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
||||
const content = `// @allowNonTsExtensions: true
|
||||
// @Filename: ref.d.ts
|
||||
namespace Thing {
|
||||
export interface Thung {
|
||||
a: number;
|
||||
]
|
||||
]
|
||||
// @Filename: Foo.js
|
||||
|
||||
/** @type {Array<number>} */
|
||||
var v;
|
||||
v[0]./*1*/
|
||||
|
||||
/** @type {{x: Array<Array<number>>}} */
|
||||
var w;
|
||||
w.x[0][0]./*2*/
|
||||
|
||||
/** @type {Array<Thing.Thung>} */
|
||||
var x;
|
||||
x[0].a./*3*/`
|
||||
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
||||
defer done()
|
||||
f.VerifyCompletions(t, f.Markers(), &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),
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user