TypeScript/tests/baselines/reference/sourceMapValidationWhile.types

24 lines
577 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/sourceMapValidationWhile.ts ===
var a = 10;
2015-04-13 23:01:57 +02:00
>a : number, Symbol(a, Decl(sourceMapValidationWhile.ts, 0, 3))
2015-04-13 21:36:11 +02:00
>10 : number
2014-08-15 23:33:16 +02:00
while (a == 10) {
>a == 10 : boolean
2015-04-13 23:01:57 +02:00
>a : number, Symbol(a, Decl(sourceMapValidationWhile.ts, 0, 3))
2015-04-13 21:36:11 +02:00
>10 : number
2014-08-15 23:33:16 +02:00
a++;
>a++ : number
2015-04-13 23:01:57 +02:00
>a : number, Symbol(a, Decl(sourceMapValidationWhile.ts, 0, 3))
2014-08-15 23:33:16 +02:00
}
while (a == 10)
>a == 10 : boolean
2015-04-13 23:01:57 +02:00
>a : number, Symbol(a, Decl(sourceMapValidationWhile.ts, 0, 3))
2015-04-13 21:36:11 +02:00
>10 : number
2014-08-15 23:33:16 +02:00
{
a++;
>a++ : number
2015-04-13 23:01:57 +02:00
>a : number, Symbol(a, Decl(sourceMapValidationWhile.ts, 0, 3))
2014-08-15 23:33:16 +02:00
}