diff --git a/common.gypi b/common.gypi index 1e6d9ac0b0fe0e..93d9e3ceee7247 100644 --- a/common.gypi +++ b/common.gypi @@ -27,7 +27,7 @@ # Reset this number to 0 on major V8 upgrades. # Increment by one for each non-official patch applied to deps/v8. - 'v8_embedder_string': '-node.13', + 'v8_embedder_string': '-node.15', # Enable disassembler for `--print-code` v8 options 'v8_enable_disassembler': 1, diff --git a/deps/v8/test/inspector/debugger/caught-uncaught-exceptions-expected.txt b/deps/v8/test/inspector/debugger/caught-uncaught-exceptions-expected.txt index 9c40b1c5561c94..039b8bd9125f43 100644 --- a/deps/v8/test/inspector/debugger/caught-uncaught-exceptions-expected.txt +++ b/deps/v8/test/inspector/debugger/caught-uncaught-exceptions-expected.txt @@ -8,6 +8,4 @@ uncaught: false paused in promiseUncaught uncaught: true paused in throwInMapConstructor -uncaught: true -paused in throwInAsyncIterator uncaught: true \ No newline at end of file diff --git a/deps/v8/test/inspector/debugger/caught-uncaught-exceptions.js b/deps/v8/test/inspector/debugger/caught-uncaught-exceptions.js index b7c4bd4ab784ee..8789943a892572 100644 --- a/deps/v8/test/inspector/debugger/caught-uncaught-exceptions.js +++ b/deps/v8/test/inspector/debugger/caught-uncaught-exceptions.js @@ -16,10 +16,6 @@ contextGroup.addScript( new Promise(function promiseUncaught() { throw new Error(); }); } function throwInMapConstructor() { new Map('a'); } - function throwInAsyncIterator() { - let it = (async function*() {})(); - it.next.call({}); - } function schedule(f) { setTimeout(f, 0); } `); @@ -41,6 +37,4 @@ Protocol.Runtime.evaluate({ "expression": "schedule(throwCaught);" }) { "expression": "schedule(throwInPromiseUncaught);"})) .then(() => Protocol.Runtime.evaluate( { "expression": "schedule(throwInMapConstructor);"})) - .then(() => Protocol.Runtime.evaluate( - { "expression": "schedule(throwInAsyncIterator);"})) .then(() => InspectorTest.completeTest());