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

18 lines
283 B
Plaintext

=== tests/cases/compiler/stradac.ts ===
var x = 10;
>x : Symbol(x, Decl(stradac.ts, 0, 3))
// C++-style comment
/*
C-Style comment
*/
function foo() {
>foo : Symbol(foo, Decl(stradac.ts, 0, 11))
x++;
>x : Symbol(x, Decl(stradac.ts, 0, 3))
}