TypeScript/tests/baselines/reference/moduleCodeGenTest3.symbols
2015-04-15 16:44:20 -07:00

11 lines
394 B
Plaintext

=== tests/cases/compiler/moduleCodeGenTest3.ts ===
module Baz { export var x = "hello"; }
>Baz : Symbol(Baz, Decl(moduleCodeGenTest3.ts, 0, 0))
>x : Symbol(x, Decl(moduleCodeGenTest3.ts, 0, 23))
Baz.x = "goodbye";
>Baz.x : Symbol(Baz.x, Decl(moduleCodeGenTest3.ts, 0, 23))
>Baz : Symbol(Baz, Decl(moduleCodeGenTest3.ts, 0, 0))
>x : Symbol(Baz.x, Decl(moduleCodeGenTest3.ts, 0, 23))