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

17 lines
425 B
Plaintext

=== tests/cases/compiler/sourceMapValidationWhile.ts ===
var a = 10;
>a : Symbol(a, Decl(sourceMapValidationWhile.ts, 0, 3))
while (a == 10) {
>a : Symbol(a, Decl(sourceMapValidationWhile.ts, 0, 3))
a++;
>a : Symbol(a, Decl(sourceMapValidationWhile.ts, 0, 3))
}
while (a == 10)
>a : Symbol(a, Decl(sourceMapValidationWhile.ts, 0, 3))
{
a++;
>a : Symbol(a, Decl(sourceMapValidationWhile.ts, 0, 3))
}