| Index: src/inspector/js_protocol.json
|
| diff --git a/src/inspector/js_protocol.json b/src/inspector/js_protocol.json
|
| index aff6806222684747ad6670f5bcd476fea04ab24e..c1ac585ed1802b77c5f9ad24de124e2ed07fa1e4 100644
|
| --- a/src/inspector/js_protocol.json
|
| +++ b/src/inspector/js_protocol.json
|
| @@ -538,6 +538,18 @@
|
| "description": "Removes JavaScript breakpoint."
|
| },
|
| {
|
| + "name": "getPossibleBreakpoints",
|
| + "parameters": [
|
| + { "name": "start", "$ref": "Location", "description": "Start of range to search possible breakpoint locations in." },
|
| + { "name": "end", "$ref": "Location", "optional": true, "description": "End of range to search possible breakpoint locations in (excluding). When not specifed, end of scripts is used as end of range." }
|
| + ],
|
| + "returns": [
|
| + { "name": "locations", "type": "array", "items": { "$ref": "Location" }, "description": "List of the possible breakpoint locations." }
|
| + ],
|
| + "description": "Returns possible locations for breakpoint. scriptId in start and end range locations should be the same.",
|
| + "experimental": true
|
| + },
|
| + {
|
| "name": "continueToLocation",
|
| "parameters": [
|
| { "name": "location", "$ref": "Location", "description": "Location to continue to." }
|
|
|