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

12 lines
311 B
Plaintext

=== tests/cases/compiler/forInStatement5.ts ===
var a: string;
>a : Symbol(a, Decl(forInStatement5.ts, 0, 3))
var expr: any;
>expr : Symbol(expr, Decl(forInStatement5.ts, 1, 3))
for (a in expr) {
>a : Symbol(a, Decl(forInStatement5.ts, 0, 3))
>expr : Symbol(expr, Decl(forInStatement5.ts, 1, 3))
}