TypeScript/tests/baselines/reference/modKeyword.types

16 lines
447 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/modKeyword.ts ===
var module:any;
2015-04-13 23:01:57 +02:00
>module : any, Symbol(module, Decl(modKeyword.ts, 0, 3))
2014-08-15 23:33:16 +02:00
var foo:any;
2015-04-13 23:01:57 +02:00
>foo : any, Symbol(foo, Decl(modKeyword.ts, 1, 3))
2014-08-15 23:33:16 +02:00
var _ = module.exports = foo
2015-04-13 23:01:57 +02:00
>_ : any, Symbol(_, Decl(modKeyword.ts, 3, 3))
2014-08-15 23:33:16 +02:00
>module.exports = foo : any
>module.exports : any
2015-04-13 23:01:57 +02:00
>module : any, Symbol(module, Decl(modKeyword.ts, 0, 3))
2014-08-15 23:33:16 +02:00
>exports : any
2015-04-13 23:01:57 +02:00
>foo : any, Symbol(foo, Decl(modKeyword.ts, 1, 3))
2014-08-15 23:33:16 +02:00