TypeScript/tests/baselines/reference/ES5For-of33.types
2018-05-03 14:18:50 -07:00

16 lines
395 B
Plaintext

=== tests/cases/conformance/statements/for-ofStatements/ES5For-of33.ts ===
for (var v of ['a', 'b', 'c']) {
>v : string
>['a', 'b', 'c'] : string[]
>'a' : "a"
>'b' : "b"
>'c' : "c"
console.log(v);
>console.log(v) : void
>console.log : (message?: any, ...optionalParams: any[]) => void
>console : Console
>log : (message?: any, ...optionalParams: any[]) => void
>v : string
}