summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/arguments/inline-arguments-callee.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/arguments/inline-arguments-callee.js')
-rw-r--r--js/src/jit-test/tests/arguments/inline-arguments-callee.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/arguments/inline-arguments-callee.js b/js/src/jit-test/tests/arguments/inline-arguments-callee.js
new file mode 100644
index 0000000000..f825839a0f
--- /dev/null
+++ b/js/src/jit-test/tests/arguments/inline-arguments-callee.js
@@ -0,0 +1,16 @@
+function inner() {
+ return arguments.callee;
+}
+function inner_escaped() {
+ return arguments;
+}
+function outer() {
+ assertEq(inner(), inner);
+ assertEq(inner_escaped().callee, inner_escaped);
+ assertEq(arguments.callee, outer);
+}
+
+with({}) {}
+for (var i = 0; i < 100; i++) {
+ outer();
+}