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

13 lines
474 B
Plaintext
Raw Normal View History

2015-02-21 03:00:03 +01:00
=== tests/cases/conformance/es6/for-ofStatements/for-of13.ts ===
var v: string;
2015-04-13 23:01:57 +02:00
>v : string, Symbol(v, Decl(for-of13.ts, 0, 3))
2015-02-21 03:00:03 +01:00
for (v of [""].values()) { }
2015-04-13 23:01:57 +02:00
>v : string, Symbol(v, Decl(for-of13.ts, 0, 3))
2015-02-21 03:00:03 +01:00
>[""].values() : IterableIterator<string>
2015-04-13 23:01:57 +02:00
>[""].values : () => IterableIterator<string>, Symbol(Array.values, Decl(lib.d.ts, 1423, 37))
2015-02-21 03:00:03 +01:00
>[""] : string[]
2015-04-13 21:36:11 +02:00
>"" : string
2015-04-13 23:01:57 +02:00
>values : () => IterableIterator<string>, Symbol(Array.values, Decl(lib.d.ts, 1423, 37))
2015-02-21 03:00:03 +01:00