1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
=== tests/cases/conformance/ambient/ambientInsideNonAmbient.ts ===
module M {
>M : Symbol(M, Decl(ambientInsideNonAmbient.ts, 0, 0))
export declare var x;
>x : Symbol(x, Decl(ambientInsideNonAmbient.ts, 1, 22))
export declare function f();
>f : Symbol(f, Decl(ambientInsideNonAmbient.ts, 1, 25))
export declare class C { }
>C : Symbol(C, Decl(ambientInsideNonAmbient.ts, 2, 32))
export declare enum E { }
>E : Symbol(E, Decl(ambientInsideNonAmbient.ts, 3, 30))
export declare module M { }
>M : Symbol(M, Decl(ambientInsideNonAmbient.ts, 4, 29))
}
module M2 {
>M2 : Symbol(M2, Decl(ambientInsideNonAmbient.ts, 6, 1))
declare var x;
>x : Symbol(x, Decl(ambientInsideNonAmbient.ts, 9, 15))
declare function f();
>f : Symbol(f, Decl(ambientInsideNonAmbient.ts, 9, 18))
declare class C { }
>C : Symbol(C, Decl(ambientInsideNonAmbient.ts, 10, 25))
declare enum E { }
>E : Symbol(E, Decl(ambientInsideNonAmbient.ts, 11, 23))
declare module M { }
>M : Symbol(M, Decl(ambientInsideNonAmbient.ts, 12, 22))
}
|