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

12 lines
292 B
Text
Raw Normal View History

2015-02-21 03:00:03 +01:00
=== tests/cases/conformance/es6/for-ofStatements/for-of13.ts ===
var v: string;
>v : string
for (v of [""].values()) { }
>v : string
>[""].values() : IterableIterator<string>
>[""].values : () => IterableIterator<string>
>[""] : string[]
>values : () => IterableIterator<string>