TypeScript/tests/baselines/reference/sourceMapValidationDo.types

27 lines
567 B
Plaintext
Raw Normal View History

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