TypeScript/tests/baselines/reference/moduleCodeGenTest3.types

13 lines
496 B
Text

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