From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .../jit-test/tests/debug/onExceptionUnwind-17.js | 58 ++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 js/src/jit-test/tests/debug/onExceptionUnwind-17.js (limited to 'js/src/jit-test/tests/debug/onExceptionUnwind-17.js') diff --git a/js/src/jit-test/tests/debug/onExceptionUnwind-17.js b/js/src/jit-test/tests/debug/onExceptionUnwind-17.js new file mode 100644 index 0000000000..5f2e9bf4fe --- /dev/null +++ b/js/src/jit-test/tests/debug/onExceptionUnwind-17.js @@ -0,0 +1,58 @@ +// Test behavior of isInCatchScope on frame from loop iterator + +load(libdir + "asserts.js"); + +var g = newGlobal({newCompartment: true}); +var dbg = Debugger(g); +var hit = false; +dbg.onExceptionUnwind = function (frame, exc) { + // onExceptionUnwind is called multiple times as the stack is unwound. + // Only check the first hit. + assertEq(frame instanceof Debugger.Frame, true); + assertEq(exc, 16); + if (!hit) { + hit = true; + { + assertEq(frame.type, "call"); + assertEq(frame.callee.name, "foo"); + assertEq(frame.older.type, "call"); + const { lineNumber, columnNumber } = frame.script.getOffsetMetadata(frame.offset); + assertEq(lineNumber, 3); + assertEq(columnNumber, 5); + + const isInCatchScope = frame.script.isInCatchScope(frame.offset); + assertEq(isInCatchScope, false); + } + + { + const { older } = frame; + assertEq(older.type, "call"); + assertEq(older.callee.name, "f"); + assertEq(older.type, "call"); + const { lineNumber, columnNumber } = older.script.getOffsetMetadata(older.offset); + assertEq(lineNumber, 8); + assertEq(columnNumber, 7); + + const isInCatchScope = older.script.isInCatchScope(older.offset); + assertEq(isInCatchScope, true); + } + } +}; + +g.eval( +`function f() { + function foo() { + throw 16; // <= first frame on exception is here + } + + try { + for (const _ of [1]) { + foo(); // <= second frame, "older" is here + } + } catch (e) { + throw e; + } +} +`); +assertThrowsValue(function () { g.eval("f();"); }, 16); +assertEq(hit, true); -- cgit v1.2.3