46 lines
1.1 KiB
Go
46 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 TestCompletionEntryAfterASIExpressionInClass(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `class Parent {
|
|
protected shouldWork() {
|
|
console.log();
|
|
}
|
|
}
|
|
|
|
class Child extends Parent {
|
|
// this assumes ASI, but on next line wants to
|
|
x = () => 1
|
|
shoul/*insideid*/
|
|
}
|
|
|
|
class ChildTwo extends Parent {
|
|
// this assumes ASI, but on next line wants to
|
|
x = () => 1
|
|
/*root*/ //nothing
|
|
}`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.VerifyCompletions(t, []string{"insideid", "root"}, &fourslash.CompletionsExpectedList{
|
|
IsIncomplete: false,
|
|
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
|
CommitCharacters: &[]string{},
|
|
EditRange: Ignored,
|
|
},
|
|
Items: &fourslash.CompletionsExpectedItems{
|
|
Includes: []fourslash.CompletionsExpectedItem{
|
|
"shouldWork",
|
|
},
|
|
},
|
|
})
|
|
}
|