TypeScript/tests/baselines/reference/ambientInsideNonAmbient.types

39 lines
1.1 KiB
Plaintext
Raw Normal View History

=== tests/cases/conformance/ambient/ambientInsideNonAmbient.ts ===
module M {
2015-04-13 23:01:57 +02:00
>M : typeof M, Symbol(M, Decl(ambientInsideNonAmbient.ts, 0, 0))
export declare var x;
2015-04-13 23:01:57 +02:00
>x : any, Symbol(x, Decl(ambientInsideNonAmbient.ts, 1, 22))
export declare function f();
2015-04-13 23:01:57 +02:00
>f : () => any, Symbol(f, Decl(ambientInsideNonAmbient.ts, 1, 25))
export declare class C { }
2015-04-13 23:01:57 +02:00
>C : C, Symbol(C, Decl(ambientInsideNonAmbient.ts, 2, 32))
export declare enum E { }
2015-04-13 23:01:57 +02:00
>E : E, Symbol(E, Decl(ambientInsideNonAmbient.ts, 3, 30))
export declare module M { }
2015-04-13 23:01:57 +02:00
>M : any, Symbol(M, Decl(ambientInsideNonAmbient.ts, 4, 29))
}
module M2 {
2015-04-13 23:01:57 +02:00
>M2 : typeof M2, Symbol(M2, Decl(ambientInsideNonAmbient.ts, 6, 1))
declare var x;
2015-04-13 23:01:57 +02:00
>x : any, Symbol(x, Decl(ambientInsideNonAmbient.ts, 9, 15))
declare function f();
2015-04-13 23:01:57 +02:00
>f : () => any, Symbol(f, Decl(ambientInsideNonAmbient.ts, 9, 18))
declare class C { }
2015-04-13 23:01:57 +02:00
>C : C, Symbol(C, Decl(ambientInsideNonAmbient.ts, 10, 25))
declare enum E { }
2015-04-13 23:01:57 +02:00
>E : E, Symbol(E, Decl(ambientInsideNonAmbient.ts, 11, 23))
declare module M { }
2015-04-13 23:01:57 +02:00
>M : any, Symbol(M, Decl(ambientInsideNonAmbient.ts, 12, 22))
}