summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/arrow-functions/arguments-3.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/arrow-functions/arguments-3.js')
-rw-r--r--js/src/jit-test/tests/arrow-functions/arguments-3.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/arrow-functions/arguments-3.js b/js/src/jit-test/tests/arrow-functions/arguments-3.js
new file mode 100644
index 0000000000..f4453438c1
--- /dev/null
+++ b/js/src/jit-test/tests/arrow-functions/arguments-3.js
@@ -0,0 +1,16 @@
+// 'arguments' in eval
+
+function f() {
+ var g = s => eval(s);
+ assertEq(g("arguments"), arguments);
+}
+
+f();
+f(0, 1, 2);
+
+function h() {
+ return s => eval(s);
+}
+var result = h(1, 2, 3, 4)("arguments");
+assertEq(result.length, 4);
+assertEq(result[3], 4);