vendor tsgo
This commit is contained in:
@@ -0,0 +1,124 @@
|
||||
// Code generated by convertFourslash; DO NOT EDIT.
|
||||
// To modify this test, run "npm run makemanual completionWithNamespaceInsideFunction"
|
||||
|
||||
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 TestCompletionWithNamespaceInsideFunction(t *testing.T) {
|
||||
fourslash.SkipIfFailing(t)
|
||||
t.Parallel()
|
||||
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
||||
const content = `function f() {
|
||||
namespace n {
|
||||
interface I {
|
||||
x: number
|
||||
}
|
||||
/*1*/
|
||||
}
|
||||
/*2*/
|
||||
}
|
||||
/*3*/
|
||||
function f2() {
|
||||
namespace n2 {
|
||||
class I2 {
|
||||
x: number
|
||||
}
|
||||
/*11*/
|
||||
}
|
||||
/*22*/
|
||||
}
|
||||
/*33*/`
|
||||
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
||||
defer done()
|
||||
f.VerifyCompletions(t, []string{"1", "2", "3"}, &fourslash.CompletionsExpectedList{
|
||||
IsIncomplete: false,
|
||||
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
||||
CommitCharacters: &DefaultCommitCharacters,
|
||||
EditRange: Ignored,
|
||||
},
|
||||
Items: &fourslash.CompletionsExpectedItems{
|
||||
Includes: []fourslash.CompletionsExpectedItem{
|
||||
&lsproto.CompletionItem{
|
||||
Label: "f",
|
||||
Detail: new("function f(): void"),
|
||||
},
|
||||
},
|
||||
Excludes: []string{
|
||||
"n",
|
||||
"I",
|
||||
},
|
||||
},
|
||||
})
|
||||
f.VerifyCompletions(t, "11", &fourslash.CompletionsExpectedList{
|
||||
IsIncomplete: false,
|
||||
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
||||
CommitCharacters: &DefaultCommitCharacters,
|
||||
EditRange: Ignored,
|
||||
},
|
||||
Items: &fourslash.CompletionsExpectedItems{
|
||||
Includes: []fourslash.CompletionsExpectedItem{
|
||||
&lsproto.CompletionItem{
|
||||
Label: "f2",
|
||||
Detail: new("function f2(): void"),
|
||||
},
|
||||
&lsproto.CompletionItem{
|
||||
Label: "n2",
|
||||
Detail: new("namespace n2"),
|
||||
},
|
||||
&lsproto.CompletionItem{
|
||||
Label: "I2",
|
||||
Detail: new("class I2"),
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
f.VerifyCompletions(t, "22", &fourslash.CompletionsExpectedList{
|
||||
IsIncomplete: false,
|
||||
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
||||
CommitCharacters: &DefaultCommitCharacters,
|
||||
EditRange: Ignored,
|
||||
},
|
||||
Items: &fourslash.CompletionsExpectedItems{
|
||||
Includes: []fourslash.CompletionsExpectedItem{
|
||||
&lsproto.CompletionItem{
|
||||
Label: "f2",
|
||||
Detail: new("function f2(): void"),
|
||||
},
|
||||
&lsproto.CompletionItem{
|
||||
Label: "n2",
|
||||
Detail: new("namespace n2"),
|
||||
},
|
||||
},
|
||||
Excludes: []string{
|
||||
"I2",
|
||||
},
|
||||
},
|
||||
})
|
||||
f.VerifyCompletions(t, "33", &fourslash.CompletionsExpectedList{
|
||||
IsIncomplete: false,
|
||||
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
||||
CommitCharacters: &DefaultCommitCharacters,
|
||||
EditRange: Ignored,
|
||||
},
|
||||
Items: &fourslash.CompletionsExpectedItems{
|
||||
Includes: []fourslash.CompletionsExpectedItem{
|
||||
&lsproto.CompletionItem{
|
||||
Label: "f2",
|
||||
Detail: new("function f2(): void"),
|
||||
},
|
||||
},
|
||||
Excludes: []string{
|
||||
"n2",
|
||||
"I2",
|
||||
},
|
||||
},
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user