summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/closures/test-inner-imports.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/closures/test-inner-imports.js')
-rw-r--r--js/src/jit-test/tests/closures/test-inner-imports.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/closures/test-inner-imports.js b/js/src/jit-test/tests/closures/test-inner-imports.js
new file mode 100644
index 0000000000..8e7e8d05fc
--- /dev/null
+++ b/js/src/jit-test/tests/closures/test-inner-imports.js
@@ -0,0 +1,22 @@
+actual = '';
+expected = '0,0,2,2,4,4,6,6,8,8,';
+
+function g(b) {
+ for (var i = 0; i < 10; ++i) {
+ }
+}
+
+function f(xa_arg) {
+ var xa = xa_arg;
+ for (var i = 0; i < 5; ++i) {
+ var j = i + xa[i];
+ appendToActual(j);
+ g();
+ appendToActual(j);
+ }
+}
+
+f([ 0, 1, 2, 3, 4 ]);
+
+
+assertEq(actual, expected)