vendor tsgo
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
// Code generated by convertFourslash; DO NOT EDIT.
|
||||
// To modify this test, run "npm run makemanual quickInfoDisplayPartsClassAccessors"
|
||||
|
||||
package fourslash_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/microsoft/typescript-go/internal/fourslash"
|
||||
"github.com/microsoft/typescript-go/internal/testutil"
|
||||
)
|
||||
|
||||
func TestQuickInfoDisplayPartsClassAccessors(t *testing.T) {
|
||||
fourslash.SkipIfFailing(t)
|
||||
t.Parallel()
|
||||
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
||||
const content = `class c {
|
||||
public get /*1*/publicProperty() { return ""; }
|
||||
public set /*1s*/publicProperty(x: string) { }
|
||||
private get /*2*/privateProperty() { return ""; }
|
||||
private set /*2s*/privateProperty(x: string) { }
|
||||
protected get /*21*/protectedProperty() { return ""; }
|
||||
protected set /*21s*/protectedProperty(x: string) { }
|
||||
static get /*3*/staticProperty() { return ""; }
|
||||
static set /*3s*/staticProperty(x: string) { }
|
||||
private static get /*4*/privateStaticProperty() { return ""; }
|
||||
private static set /*4s*/privateStaticProperty(x: string) { }
|
||||
protected static get /*41*/protectedStaticProperty() { return ""; }
|
||||
protected static set /*41s*/protectedStaticProperty(x: string) { }
|
||||
method() {
|
||||
var x : string;
|
||||
x = this./*5*/publicProperty;
|
||||
x = this./*6*/privateProperty;
|
||||
x = this./*61*/protectedProperty;
|
||||
x = c./*7*/staticProperty;
|
||||
x = c./*8*/privateStaticProperty;
|
||||
x = c./*81*/protectedStaticProperty;
|
||||
this./*5s*/publicProperty = "";
|
||||
this./*6s*/privateProperty = "";
|
||||
this./*61s*/protectedProperty = "";
|
||||
c./*7s*/staticProperty = "";
|
||||
c./*8s*/privateStaticProperty = "";
|
||||
c./*81s*/protectedStaticProperty = "";
|
||||
}
|
||||
}
|
||||
var cInstance = new c();
|
||||
var y: string;
|
||||
y = /*9*/cInstance./*10*/publicProperty;
|
||||
y = /*11*/c./*12*/staticProperty;
|
||||
/*9s*/cInstance./*10s*/publicProperty = y;
|
||||
/*11s*/c./*12s*/staticProperty = y;`
|
||||
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
||||
defer done()
|
||||
f.VerifyBaselineHover(t)
|
||||
}
|
||||
Reference in New Issue
Block a user