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