TypeScript/tests/baselines/reference/augmentedTypesExternalModule1.types

13 lines
563 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/augmentedTypesExternalModule1.ts ===
export var a = 1;
2015-04-13 23:01:57 +02:00
>a : number, Symbol(a, Decl(augmentedTypesExternalModule1.ts, 0, 10))
2015-04-13 21:36:11 +02:00
>1 : number
2014-08-15 23:33:16 +02:00
class c5 { public foo() { } }
2015-04-13 23:01:57 +02:00
>c5 : c5, Symbol(c5, Decl(augmentedTypesExternalModule1.ts, 0, 17), Decl(augmentedTypesExternalModule1.ts, 1, 29))
>foo : () => void, Symbol(foo, Decl(augmentedTypesExternalModule1.ts, 1, 10))
2014-08-15 23:33:16 +02:00
module c5 { } // should be ok everywhere
2015-04-13 23:01:57 +02:00
>c5 : typeof c5, Symbol(c5, Decl(augmentedTypesExternalModule1.ts, 0, 17), Decl(augmentedTypesExternalModule1.ts, 1, 29))
2014-08-15 23:33:16 +02:00