fab116be0e
This adds information about an exception's caught/uncaught status to the Runtime.paused event in the data parameter: { "method": "Debugger.paused", "params": { "callFrames": [ [...] ], "data": { "description": "666", "type": "number", "uncaught": true, <--- "value": 666 }, "hitBreakpoints": [], "reason": "exception" } } BUG=v8:5530 Review-Url: https://codereview.chromium.org/2488733003 Cr-Commit-Position: refs/heads/master@{#40875}
6 lines
144 B
Plaintext
6 lines
144 B
Plaintext
Check that inspector correctly passes caught/uncaught information.
|
|
paused in throwCaught
|
|
uncaught: false
|
|
paused in throwUncaught
|
|
uncaught: true
|