TypeScript/tests/baselines/reference/commentEmitAtEndOfFile1.types

19 lines
475 B
Plaintext
Raw Normal View History

=== tests/cases/compiler/commentEmitAtEndOfFile1.ts ===
// test
var f = ''
2015-04-13 23:01:57 +02:00
>f : string, Symbol(f, Decl(commentEmitAtEndOfFile1.ts, 1, 3))
2015-04-13 21:36:11 +02:00
>'' : string
// test #2
module foo {
2015-04-13 23:01:57 +02:00
>foo : typeof foo, Symbol(foo, Decl(commentEmitAtEndOfFile1.ts, 1, 10))
function bar() { }
2015-04-13 23:01:57 +02:00
>bar : () => void, Symbol(bar, Decl(commentEmitAtEndOfFile1.ts, 3, 12))
}
// test #3
module empty {
2015-04-13 23:01:57 +02:00
>empty : any, Symbol(empty, Decl(commentEmitAtEndOfFile1.ts, 5, 1))
}
// test #4