TypeScript/tests/baselines/reference/ES5For-of1.types
Nathan Shively-Sanders 933c294923
Dom update 2020-03-18 (#37464)
* Copy over DOM updates from TSJS-lib-generator

* update baselines
2020-03-18 16:08:19 -07:00

16 lines
344 B
Plaintext

=== tests/cases/conformance/statements/for-ofStatements/ES5For-of1.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 : (...data: any[]) => void
>console : Console
>log : (...data: any[]) => void
>v : string
}