blob: 1ab262fc02e99bc99ea090188c319d90c2f8dc61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// The decompiler correctly handles for-of loops.
function tokens(code) {
var arr = [];
var s = code.replace(/\w+|[^\s]/g, function (tok) { arr.push(tok); return ""; });
assertEq(s.trim(), "", "tokens() should find all tokens in code: " + uneval(code));
return arr;
}
function test(code) {
var before = "function f() { " + code + " }";
var after = eval("(" + before + ")").toString();
assertEq(tokens(before).join(" "), tokens(after).join(" "), "decompiler failed to round-trip");
}
// statements
test("for (a of b) { f(a); }");
test("for (a of b) { f(a); g(a); }");
// for-of with "in" operator nearby
test("for (a of b in c ? c : c.items()) { f(a); }");
// destructuring
test("for ([a, b] of c) { a.m(b); }");
// for-let-of
test("for (let a of b) { f(a); }");
test("for (let [a, b] of c) { a.m(b); }");
|