27 lines
666 B
Go
27 lines
666 B
Go
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
|
|
)
|
|
|
|
func TestQuickInfoSpecialPropertyAssignment(t *testing.T) {
|
|
t.Parallel()
|
|
t.Skip()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @allowJs: true
|
|
// @Filename: /a.js
|
|
class C {
|
|
constructor() {
|
|
/** Doc */
|
|
this./*write*/x = 0;
|
|
this./*read*/x;
|
|
}
|
|
}`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.VerifyQuickInfoAt(t, "write", "(property) C.x: any", "Doc")
|
|
f.VerifyQuickInfoAt(t, "read", "(property) C.x: number", "Doc")
|
|
}
|