summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/bug1111199.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/debug/bug1111199.js')
-rw-r--r--js/src/jit-test/tests/debug/bug1111199.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/debug/bug1111199.js b/js/src/jit-test/tests/debug/bug1111199.js
new file mode 100644
index 0000000000..b7aa78d04c
--- /dev/null
+++ b/js/src/jit-test/tests/debug/bug1111199.js
@@ -0,0 +1,17 @@
+g = newGlobal({newCompartment: true})
+g.parent = this
+g.eval("Debugger(parent).onExceptionUnwind=(function(){})")
+try {
+function f(code) {
+ n = parseInt('', 0);
+ return g("try{}catch(e){}", n)
+}
+function g(s, n) {
+ s2 = s + s
+ d = (n - (function () {
+ return "" + this.id + eval.id;
+ } )().abstract) / 2
+ m = g(s2, d)
+}
+f("switch(''){default:break;}")
+} catch(exc1) {}