| OLD | NEW |
| 1 { | 1 { |
| 2 "version": { "major": "1", "minor": "2" }, | 2 "version": { "major": "1", "minor": "2" }, |
| 3 "domains": [ | 3 "domains": [ |
| 4 { | 4 { |
| 5 "domain": "Schema", | 5 "domain": "Schema", |
| 6 "description": "Provides information about the protocol schema.", | 6 "description": "Provides information about the protocol schema.", |
| 7 "types": [ | 7 "types": [ |
| 8 { | 8 { |
| 9 "id": "Domain", | 9 "id": "Domain", |
| 10 "type": "object", | 10 "type": "object", |
| (...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 721 "parameters": [ | 721 "parameters": [ |
| 722 { "name": "breakpointId", "$ref": "BreakpointId", "descripti
on": "Breakpoint unique identifier." }, | 722 { "name": "breakpointId", "$ref": "BreakpointId", "descripti
on": "Breakpoint unique identifier." }, |
| 723 { "name": "location", "$ref": "Location", "description": "Ac
tual breakpoint location." } | 723 { "name": "location", "$ref": "Location", "description": "Ac
tual breakpoint location." } |
| 724 ], | 724 ], |
| 725 "description": "Fired when breakpoint is resolved to an actual s
cript and location." | 725 "description": "Fired when breakpoint is resolved to an actual s
cript and location." |
| 726 }, | 726 }, |
| 727 { | 727 { |
| 728 "name": "paused", | 728 "name": "paused", |
| 729 "parameters": [ | 729 "parameters": [ |
| 730 { "name": "callFrames", "type": "array", "items": { "$ref":
"CallFrame" }, "description": "Call stack the virtual machine stopped on." }, | 730 { "name": "callFrames", "type": "array", "items": { "$ref":
"CallFrame" }, "description": "Call stack the virtual machine stopped on." }, |
| 731 { "name": "reason", "type": "string", "enum": [ "XHR", "DOM"
, "EventListener", "exception", "assert", "debugCommand", "promiseRejection", "O
OM", "other" ], "description": "Pause reason." }, | 731 { "name": "reason", "type": "string", "enum": [ "XHR", "DOM"
, "EventListener", "exception", "assert", "debugCommand", "promiseRejection", "O
OM", "other", "ambiguous" ], "description": "Pause reason." }, |
| 732 { "name": "data", "type": "object", "optional": true, "descr
iption": "Object containing break-specific auxiliary properties." }, | 732 { "name": "data", "type": "object", "optional": true, "descr
iption": "Object containing break-specific auxiliary properties." }, |
| 733 { "name": "hitBreakpoints", "type": "array", "optional": tru
e, "items": { "type": "string" }, "description": "Hit breakpoints IDs" }, | 733 { "name": "hitBreakpoints", "type": "array", "optional": tru
e, "items": { "type": "string" }, "description": "Hit breakpoints IDs" }, |
| 734 { "name": "asyncStackTrace", "$ref": "Runtime.StackTrace", "
optional": true, "description": "Async stack trace, if any." } | 734 { "name": "asyncStackTrace", "$ref": "Runtime.StackTrace", "
optional": true, "description": "Async stack trace, if any." } |
| 735 ], | 735 ], |
| 736 "description": "Fired when the virtual machine stopped on breakp
oint or exception or any other stop criteria." | 736 "description": "Fired when the virtual machine stopped on breakp
oint or exception or any other stop criteria." |
| 737 }, | 737 }, |
| 738 { | 738 { |
| 739 "name": "resumed", | 739 "name": "resumed", |
| 740 "description": "Fired when the virtual machine resumed execution
." | 740 "description": "Fired when the virtual machine resumed execution
." |
| 741 } | 741 } |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 995 { | 995 { |
| 996 "name": "heapStatsUpdate", | 996 "name": "heapStatsUpdate", |
| 997 "description": "If heap objects tracking has been started then b
ackend may send update for one or more fragments", | 997 "description": "If heap objects tracking has been started then b
ackend may send update for one or more fragments", |
| 998 "parameters": [ | 998 "parameters": [ |
| 999 { "name": "statsUpdate", "type": "array", "items": { "type":
"integer" }, "description": "An array of triplets. Each triplet describes a fra
gment. The first integer is the fragment index, the second integer is a total co
unt of objects for the fragment, the third integer is a total size of the object
s for the fragment."} | 999 { "name": "statsUpdate", "type": "array", "items": { "type":
"integer" }, "description": "An array of triplets. Each triplet describes a fra
gment. The first integer is the fragment index, the second integer is a total co
unt of objects for the fragment, the third integer is a total size of the object
s for the fragment."} |
| 1000 ] | 1000 ] |
| 1001 } | 1001 } |
| 1002 ] | 1002 ] |
| 1003 }] | 1003 }] |
| 1004 } | 1004 } |
| OLD | NEW |