summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/pic/length_array.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/pic/length_array.js')
-rw-r--r--js/src/jit-test/tests/pic/length_array.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/pic/length_array.js b/js/src/jit-test/tests/pic/length_array.js
new file mode 100644
index 0000000000..ab77749b76
--- /dev/null
+++ b/js/src/jit-test/tests/pic/length_array.js
@@ -0,0 +1,16 @@
+// length, string
+
+var expected = "3,6,4,3,6,4,3,6,4,3,6,4,";
+var actual = '';
+
+function f() {
+ var ss = [ [1, 2, 3], [1, 2, 3, 4, 5, 6], [1, 2, 3, 4] ];
+
+ for (var i = 0; i < 12; ++i) {
+ actual += ss[i%3].length + ',';
+ }
+}
+
+f();
+
+assertEq(actual, expected);