TypeScript/tests/baselines/reference/ES5For-of22.symbols
2018-05-03 14:18:50 -07:00

14 lines
447 B
Plaintext

=== tests/cases/conformance/statements/for-ofStatements/ES5For-of22.ts ===
for (var x of [1, 2, 3]) {
>x : Symbol(x, Decl(ES5For-of22.ts, 0, 8))
let _a = 0;
>_a : Symbol(_a, Decl(ES5For-of22.ts, 1, 7))
console.log(x);
>console.log : Symbol(Console.log, Decl(lib.d.ts, --, --))
>console : Symbol(console, Decl(lib.d.ts, --, --))
>log : Symbol(Console.log, Decl(lib.d.ts, --, --))
>x : Symbol(x, Decl(ES5For-of22.ts, 0, 8))
}