TypeScript/tests/baselines/reference/ES5For-of13.types

13 lines
361 B
Plaintext
Raw Normal View History

=== tests/cases/conformance/statements/for-ofStatements/ES5For-of13.ts ===
for (let v of ['a', 'b', 'c']) {
2015-04-13 23:01:57 +02:00
>v : string, Symbol(v, Decl(ES5For-of13.ts, 0, 8))
>['a', 'b', 'c'] : string[]
2015-04-13 21:36:11 +02:00
>'a' : string
>'b' : string
>'c' : string
var x = v;
2015-04-13 23:01:57 +02:00
>x : string, Symbol(x, Decl(ES5For-of13.ts, 1, 7))
>v : string, Symbol(v, Decl(ES5For-of13.ts, 0, 8))
}