summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/pic/length_object.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/pic/length_object.js')
-rw-r--r--js/src/jit-test/tests/pic/length_object.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/pic/length_object.js b/js/src/jit-test/tests/pic/length_object.js
new file mode 100644
index 0000000000..5f01d57dff
--- /dev/null
+++ b/js/src/jit-test/tests/pic/length_object.js
@@ -0,0 +1,16 @@
+// length, object
+
+var expected = "777,777,777,777,777,";
+var actual = '';
+
+function f() {
+ var o = { a: 11, length: 777, b: 22 };
+
+ for (var i = 0; i < 5; ++i) {
+ actual += o.length + ',';
+ }
+}
+
+f();
+
+assertEq(actual, expected);