TypeScript/tests/baselines/reference/ES5For-of13.types
2016-09-01 14:25:44 -07:00

13 lines
235 B
Plaintext

=== tests/cases/conformance/statements/for-ofStatements/ES5For-of13.ts ===
for (let v of ['a', 'b', 'c']) {
>v : string
>['a', 'b', 'c'] : string[]
>'a' : "a"
>'b' : "b"
>'c' : "c"
var x = v;
>x : string
>v : string
}