summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug682345.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/jaeger/bug682345.js')
-rw-r--r--js/src/jit-test/tests/jaeger/bug682345.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/jaeger/bug682345.js b/js/src/jit-test/tests/jaeger/bug682345.js
new file mode 100644
index 0000000000..94d610748d
--- /dev/null
+++ b/js/src/jit-test/tests/jaeger/bug682345.js
@@ -0,0 +1,16 @@
+// |jit-test| error: TypeError
+
+for (var i = 0; i <= 0x017f; i++) {
+ var U = new Unicode(i);
+}
+function Unicode(c) {
+ u = GetUnicodeValues(c);
+ this.upper = u[0];
+}
+function GetUnicodeValues(c) {
+ u = new Array();
+ if ((c >= 0x0100 && c < 0x0138) || (c > 0x0149 && c < 0x0178)) try {} finally {
+ return;
+ }
+ return u;
+}