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

12 lines
315 B
Plaintext

=== tests/cases/conformance/statements/for-ofStatements/ES5For-of24.ts ===
var a = [1, 2, 3];
>a : Symbol(a, Decl(ES5For-of24.ts, 0, 3))
for (var v of a) {
>v : Symbol(v, Decl(ES5For-of24.ts, 1, 8))
>a : Symbol(a, Decl(ES5For-of24.ts, 0, 3))
let a = 0;
>a : Symbol(a, Decl(ES5For-of24.ts, 2, 7))
}