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

13 lines
462 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, Symbol(v,Decl(for-of13.ts,0,3))
2015-02-21 03:00:03 +01:00
for (v of [""].values()) { }
>v : string, Symbol(v,Decl(for-of13.ts,0,3))
2015-02-21 03:00:03 +01:00
>[""].values() : IterableIterator<string>
>[""].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
>values : () => IterableIterator<string>, Symbol(Array.values,Decl(lib.d.ts,1423,37))
2015-02-21 03:00:03 +01:00