vendor tsgo
This commit is contained in:
@@ -0,0 +1,74 @@
|
||||
// Code generated by convertFourslash; DO NOT EDIT.
|
||||
// To modify this test, run "npm run makemanual getOccurrencesPublic2"
|
||||
|
||||
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/testutil"
|
||||
)
|
||||
|
||||
func TestGetOccurrencesPublic2(t *testing.T) {
|
||||
fourslash.SkipIfFailing(t)
|
||||
t.Parallel()
|
||||
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
||||
const content = `namespace m {
|
||||
export class C1 {
|
||||
public pub1;
|
||||
public pub2;
|
||||
private priv1;
|
||||
private priv2;
|
||||
protected prot1;
|
||||
protected prot2;
|
||||
|
||||
public public;
|
||||
private private;
|
||||
protected protected;
|
||||
|
||||
public constructor(public a, private b, protected c, public d, private e, protected f) {
|
||||
this.public = 10;
|
||||
this.private = 10;
|
||||
this.protected = 10;
|
||||
}
|
||||
|
||||
public get x() { return 10; }
|
||||
public set x(value) { }
|
||||
|
||||
public static statPub;
|
||||
private static statPriv;
|
||||
protected static statProt;
|
||||
}
|
||||
|
||||
export interface I1 {
|
||||
}
|
||||
|
||||
export declare namespace ma.m1.m2.m3 {
|
||||
interface I2 {
|
||||
}
|
||||
}
|
||||
|
||||
export namespace mb.m1.m2.m3 {
|
||||
declare var foo;
|
||||
|
||||
export class C2 {
|
||||
[|public|] pub1;
|
||||
private priv1;
|
||||
protected prot1;
|
||||
|
||||
protected constructor([|public|] public, protected protected, private private) {
|
||||
public = private = protected;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
declare var ambientThing: number;
|
||||
export var exportedThing = 10;
|
||||
declare function foo(): string;
|
||||
}`
|
||||
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
||||
defer done()
|
||||
f.VerifyBaselineDocumentHighlights(t, nil /*preferences*/, ToAny(f.Ranges())...)
|
||||
}
|
||||
Reference in New Issue
Block a user