31850be1c2
This CL introduces a new `status` enum returned by setScriptSource. We'll use the information in the DevTools frontend to show more meaningful error messages as well as disambiguate compilation errors from failed live edits. Drive-by: Deprecate the sync and async stack traces in the result. Currently `setScriptSource` is guaranteed to stay paused so there is no need to send along the same information from the preceeding `Debugger.paused` event. In the future we will restart the top-most frame once we allow the top-most frame to be edited. In that case the inspector fires Debugger.resumed + Debugger.paused events following the live edit also making the info returned here superfluous. R=jarin@chromium.org Bug: chromium:1334484 Change-Id: I4226491caed72013a00927273c523213d797a766 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3691850 Commit-Queue: Simon Zünd <szuend@chromium.org> Reviewed-by: Jaroslav Sevcik <jarin@chromium.org> Cr-Commit-Position: refs/heads/main@{#81031}
28 lines
480 B
Plaintext
28 lines
480 B
Plaintext
Regression test for crbug.com/1195927
|
|
|
|
Running test: test
|
|
Debugger.setBreakpoint result:
|
|
{
|
|
actualLocation : {
|
|
columnNumber : 2
|
|
lineNumber : 2
|
|
scriptId : <scriptId>
|
|
}
|
|
breakpointId : <breakpointId>
|
|
}
|
|
Debugger.paused call frames:
|
|
foo (foo.js:2:2)
|
|
(anonymous) (:0:0)
|
|
Debugger.setScriptSource result:
|
|
{
|
|
status : BlockedByActiveFunction
|
|
}
|
|
foo(42) result:
|
|
{
|
|
result : {
|
|
description : 43
|
|
type : number
|
|
value : 43
|
|
}
|
|
}
|