summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/closures/setname-loop-2.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/closures/setname-loop-2.js')
-rw-r--r--js/src/jit-test/tests/closures/setname-loop-2.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/closures/setname-loop-2.js b/js/src/jit-test/tests/closures/setname-loop-2.js
new file mode 100644
index 0000000000..82adb07fd9
--- /dev/null
+++ b/js/src/jit-test/tests/closures/setname-loop-2.js
@@ -0,0 +1,29 @@
+actual = '';
+expected = '2,4,8,16,32,32,undefined,2,4,8,16,32,32,undefined,2,4,8,16,32,32,undefined,2,4,8,16,32,32,undefined,2,4,8,16,32,32,undefined,';
+
+var f = function() {
+ var p = 1;
+
+ function h() {
+ function g() {
+ for (var i = 0; i < 5; ++i) {
+ p = p * 2;
+ appendToActual(p);
+ }
+ }
+ g();
+ }
+
+ h();
+
+ appendToActual(p);
+}
+
+for (var i = 0; i < 5; ++i) {
+ f();
+ appendToActual();
+}
+
+
+
+assertEq(actual, expected)