TypeScript/tests/baselines/reference/ES5For-of3.symbols
2015-04-15 16:44:20 -07:00

9 lines
256 B
Plaintext

=== tests/cases/conformance/statements/for-ofStatements/ES5For-of3.ts ===
for (var v of ['a', 'b', 'c'])
>v : Symbol(v, Decl(ES5For-of3.ts, 0, 8))
var x = v;
>x : Symbol(x, Decl(ES5For-of3.ts, 1, 7))
>v : Symbol(v, Decl(ES5For-of3.ts, 0, 8))