summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/for-of/decompiler.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/for-of/decompiler.js')
-rw-r--r--js/src/jit-test/tests/for-of/decompiler.js28
1 files changed, 28 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/for-of/decompiler.js b/js/src/jit-test/tests/for-of/decompiler.js
new file mode 100644
index 0000000000..98e124b3eb
--- /dev/null
+++ b/js/src/jit-test/tests/for-of/decompiler.js
@@ -0,0 +1,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: " + JSON.stringify(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); }");