summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug913749.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/ion/bug913749.js')
-rw-r--r--js/src/jit-test/tests/ion/bug913749.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/ion/bug913749.js b/js/src/jit-test/tests/ion/bug913749.js
new file mode 100644
index 000000000..a952caf1c
--- /dev/null
+++ b/js/src/jit-test/tests/ion/bug913749.js
@@ -0,0 +1,20 @@
+y = new Float32Array(11);
+x = [];
+
+Object.defineProperty(x, 18, {
+ get: (function() {
+ y.length;
+ }),
+});
+this.toSource();
+
+y = undefined;
+
+for (var i = 0; i < 3; i++) {
+ try {
+ x.toString();
+ assertEq(0, 1);
+ } catch (e) {
+ assertEq(e.message, "y is undefined");
+ }
+}