Commit 67a59d80 authored by Toon Verwaest's avatar Toon Verwaest Committed by V8 LUCI CQ

[json] Set options to share on JSON.parse error script

This ensures that the unhandledrejection callback fires.

Bug: chromium:1219363
Change-Id: I184a728105863f9e207a603f2d45e26393c98796
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3322978
Auto-Submit: Toon Verwaest <verwaest@chromium.org>
Reviewed-by: 's avatarCamillo Bruni <cbruni@chromium.org>
Commit-Queue: Camillo Bruni <cbruni@chromium.org>
Cr-Commit-Position: refs/heads/main@{#78306}
parent ffdc50a9
......@@ -274,6 +274,8 @@ void JsonParser<Char>::ReportUnexpectedToken(JsonToken token) {
if (isolate()->NeedsSourcePositionsForProfiling()) {
Script::InitLineEnds(isolate(), script);
}
script->set_origin_options(ScriptOriginOptions(true, false));
// We should sent compile error event because we compile JSON object in
// separated source file.
isolate()->debug()->OnCompileError(script);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment