mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-05 16:38:05 -06:00
Added a few tests.
This commit is contained in:
parent
56b4978040
commit
c111086552
64
tests/cases/fourslash/getOccurrencesDeclare1.ts
Normal file
64
tests/cases/fourslash/getOccurrencesDeclare1.ts
Normal file
@ -0,0 +1,64 @@
|
||||
/// <reference path='fourslash.ts' />
|
||||
|
||||
////module 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|] module ma.m1.m2.m3 {
|
||||
//// interface I2 {
|
||||
//// }
|
||||
//// }
|
||||
////
|
||||
//// export module 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;
|
||||
////}
|
||||
|
||||
test.ranges().forEach(r => {
|
||||
goTo.position(r.start);
|
||||
verify.occurrencesAtPositionCount(test.ranges().length);
|
||||
|
||||
test.ranges().forEach(range => {
|
||||
verify.occurrencesAtPositionContains(range, false);
|
||||
});
|
||||
});
|
||||
64
tests/cases/fourslash/getOccurrencesDeclare2.ts
Normal file
64
tests/cases/fourslash/getOccurrencesDeclare2.ts
Normal file
@ -0,0 +1,64 @@
|
||||
/// <reference path='fourslash.ts' />
|
||||
|
||||
////module 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 module ma.m1.m2.m3 {
|
||||
//// interface I2 {
|
||||
//// }
|
||||
//// }
|
||||
////
|
||||
//// export module 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;
|
||||
////}
|
||||
|
||||
test.ranges().forEach(r => {
|
||||
goTo.position(r.start);
|
||||
verify.occurrencesAtPositionCount(test.ranges().length);
|
||||
|
||||
test.ranges().forEach(range => {
|
||||
verify.occurrencesAtPositionContains(range, false);
|
||||
});
|
||||
});
|
||||
64
tests/cases/fourslash/getOccurrencesExport1.ts
Normal file
64
tests/cases/fourslash/getOccurrencesExport1.ts
Normal file
@ -0,0 +1,64 @@
|
||||
/// <reference path='fourslash.ts' />
|
||||
|
||||
////module 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 module ma.m1.m2.m3 {
|
||||
//// interface I2 {
|
||||
//// }
|
||||
//// }
|
||||
////
|
||||
//// [|export|] module 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;
|
||||
////}
|
||||
|
||||
test.ranges().forEach(r => {
|
||||
goTo.position(r.start);
|
||||
verify.occurrencesAtPositionCount(test.ranges().length);
|
||||
|
||||
test.ranges().forEach(range => {
|
||||
verify.occurrencesAtPositionContains(range, false);
|
||||
});
|
||||
});
|
||||
64
tests/cases/fourslash/getOccurrencesExport2.ts
Normal file
64
tests/cases/fourslash/getOccurrencesExport2.ts
Normal file
@ -0,0 +1,64 @@
|
||||
/// <reference path='fourslash.ts' />
|
||||
|
||||
////module 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 module ma.m1.m2.m3 {
|
||||
//// interface I2 {
|
||||
//// }
|
||||
//// }
|
||||
////
|
||||
//// export module 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;
|
||||
////}
|
||||
|
||||
test.ranges().forEach(r => {
|
||||
goTo.position(r.start);
|
||||
verify.occurrencesAtPositionCount(test.ranges().length);
|
||||
|
||||
test.ranges().forEach(range => {
|
||||
verify.occurrencesAtPositionContains(range, false);
|
||||
});
|
||||
});
|
||||
64
tests/cases/fourslash/getOccurrencesPrivate1.ts
Normal file
64
tests/cases/fourslash/getOccurrencesPrivate1.ts
Normal file
@ -0,0 +1,64 @@
|
||||
/// <reference path='fourslash.ts' />
|
||||
|
||||
////module 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 module ma.m1.m2.m3 {
|
||||
//// interface I2 {
|
||||
//// }
|
||||
//// }
|
||||
////
|
||||
//// export module 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;
|
||||
////}
|
||||
|
||||
test.ranges().forEach(r => {
|
||||
goTo.position(r.start);
|
||||
verify.occurrencesAtPositionCount(test.ranges().length);
|
||||
|
||||
test.ranges().forEach(range => {
|
||||
verify.occurrencesAtPositionContains(range, false);
|
||||
});
|
||||
});
|
||||
64
tests/cases/fourslash/getOccurrencesPrivate2.ts
Normal file
64
tests/cases/fourslash/getOccurrencesPrivate2.ts
Normal file
@ -0,0 +1,64 @@
|
||||
/// <reference path='fourslash.ts' />
|
||||
|
||||
////module 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 module ma.m1.m2.m3 {
|
||||
//// interface I2 {
|
||||
//// }
|
||||
//// }
|
||||
////
|
||||
//// export module 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;
|
||||
////}
|
||||
|
||||
test.ranges().forEach(r => {
|
||||
goTo.position(r.start);
|
||||
verify.occurrencesAtPositionCount(test.ranges().length);
|
||||
|
||||
test.ranges().forEach(range => {
|
||||
verify.occurrencesAtPositionContains(range, false);
|
||||
});
|
||||
});
|
||||
64
tests/cases/fourslash/getOccurrencesProtected1.ts
Normal file
64
tests/cases/fourslash/getOccurrencesProtected1.ts
Normal file
@ -0,0 +1,64 @@
|
||||
/// <reference path='fourslash.ts' />
|
||||
|
||||
////module 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 module ma.m1.m2.m3 {
|
||||
//// interface I2 {
|
||||
//// }
|
||||
//// }
|
||||
////
|
||||
//// export module 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;
|
||||
////}
|
||||
|
||||
test.ranges().forEach(r => {
|
||||
goTo.position(r.start);
|
||||
verify.occurrencesAtPositionCount(test.ranges().length);
|
||||
|
||||
test.ranges().forEach(range => {
|
||||
verify.occurrencesAtPositionContains(range, false);
|
||||
});
|
||||
});
|
||||
64
tests/cases/fourslash/getOccurrencesProtected2.ts
Normal file
64
tests/cases/fourslash/getOccurrencesProtected2.ts
Normal file
@ -0,0 +1,64 @@
|
||||
/// <reference path='fourslash.ts' />
|
||||
|
||||
////module 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 module ma.m1.m2.m3 {
|
||||
//// interface I2 {
|
||||
//// }
|
||||
//// }
|
||||
////
|
||||
//// export module 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;
|
||||
////}
|
||||
|
||||
test.ranges().forEach(r => {
|
||||
goTo.position(r.start);
|
||||
verify.occurrencesAtPositionCount(test.ranges().length);
|
||||
|
||||
test.ranges().forEach(range => {
|
||||
verify.occurrencesAtPositionContains(range, false);
|
||||
});
|
||||
});
|
||||
64
tests/cases/fourslash/getOccurrencesPublic1.ts
Normal file
64
tests/cases/fourslash/getOccurrencesPublic1.ts
Normal file
@ -0,0 +1,64 @@
|
||||
/// <reference path='fourslash.ts' />
|
||||
|
||||
////module 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 module ma.m1.m2.m3 {
|
||||
//// interface I2 {
|
||||
//// }
|
||||
//// }
|
||||
////
|
||||
//// export module 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;
|
||||
////}
|
||||
|
||||
test.ranges().forEach(r => {
|
||||
goTo.position(r.start);
|
||||
verify.occurrencesAtPositionCount(test.ranges().length);
|
||||
|
||||
test.ranges().forEach(range => {
|
||||
verify.occurrencesAtPositionContains(range, false);
|
||||
});
|
||||
});
|
||||
64
tests/cases/fourslash/getOccurrencesPublic2.ts
Normal file
64
tests/cases/fourslash/getOccurrencesPublic2.ts
Normal file
@ -0,0 +1,64 @@
|
||||
/// <reference path='fourslash.ts' />
|
||||
|
||||
////module 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 module ma.m1.m2.m3 {
|
||||
//// interface I2 {
|
||||
//// }
|
||||
//// }
|
||||
////
|
||||
//// export module 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;
|
||||
////}
|
||||
|
||||
test.ranges().forEach(r => {
|
||||
goTo.position(r.start);
|
||||
verify.occurrencesAtPositionCount(test.ranges().length);
|
||||
|
||||
test.ranges().forEach(range => {
|
||||
verify.occurrencesAtPositionContains(range, false);
|
||||
});
|
||||
});
|
||||
64
tests/cases/fourslash/getOccurrencesStatic1.ts
Normal file
64
tests/cases/fourslash/getOccurrencesStatic1.ts
Normal file
@ -0,0 +1,64 @@
|
||||
/// <reference path='fourslash.ts' />
|
||||
|
||||
////module 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 module ma.m1.m2.m3 {
|
||||
//// interface I2 {
|
||||
//// }
|
||||
//// }
|
||||
////
|
||||
//// export module 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;
|
||||
////}
|
||||
|
||||
test.ranges().forEach(r => {
|
||||
goTo.position(r.start);
|
||||
verify.occurrencesAtPositionCount(test.ranges().length);
|
||||
|
||||
test.ranges().forEach(range => {
|
||||
verify.occurrencesAtPositionContains(range, false);
|
||||
});
|
||||
});
|
||||
Loading…
x
Reference in New Issue
Block a user