TypeScript/tests/baselines/reference/parser_continueTarget2.types

11 lines
207 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/conformance/parser/ecmascript5/Statements/ContinueStatements/parser_continueTarget2.ts ===
target:
>target : any
2015-04-13 21:36:11 +02:00
while (true) {
>true : boolean
continue target;
>target : any
2015-04-13 21:36:11 +02:00
}