summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/bug1331592.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/debug/bug1331592.js')
-rw-r--r--js/src/jit-test/tests/debug/bug1331592.js28
1 files changed, 28 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/debug/bug1331592.js b/js/src/jit-test/tests/debug/bug1331592.js
new file mode 100644
index 0000000000..6282083de2
--- /dev/null
+++ b/js/src/jit-test/tests/debug/bug1331592.js
@@ -0,0 +1,28 @@
+// |jit-test| test-also=--wasm-compiler=optimizing; error: TestComplete
+
+if (!wasmDebuggingEnabled())
+ throw "TestComplete";
+
+var module = new WebAssembly.Module(wasmTextToBinary(`
+ (module
+ (import "global" "func" (func (result i32)))
+ (func (export "func_0") (result i32)
+ call 0 ;; calls the import, which is func #0
+ )
+ )
+`));
+
+var dbg;
+(function (global) {
+ var dbgGlobal = newGlobal({newCompartment: true});
+ dbg = new dbgGlobal.Debugger();
+ dbg.addDebuggee(global);
+})(this);
+
+var instance = new WebAssembly.Instance(module, { global: { func: () => {
+ var frame = dbg.getNewestFrame().older;
+ frame.eval("some_error");
+}}});
+instance.exports.func_0();
+
+throw "TestComplete";