OLD | NEW |
---|---|
1 { | 1 { |
2 "version": { "major": "1", "minor": "1" }, | 2 "version": { "major": "1", "minor": "1" }, |
3 "domains": [{ | 3 "domains": [{ |
4 "domain": "Runtime", | 4 "domain": "Runtime", |
5 "description": "Runtime domain exposes JavaScript runtime by means of re mote evaluation and mirror objects. Evaluation results are returned as mirror ob ject that expose object type, string representation and unique identifier that c an be used for further object reference. Original objects are maintained in memo ry unless they are either explicitly released or are released along with the oth er objects in their object group.", | 5 "description": "Runtime domain exposes JavaScript runtime by means of re mote evaluation and mirror objects. Evaluation results are returned as mirror ob ject that expose object type, string representation and unique identifier that c an be used for further object reference. Original objects are maintained in memo ry unless they are either explicitly released or are released along with the oth er objects in their object group.", |
6 "types": [ | 6 "types": [ |
7 { | 7 { |
8 "id": "ScriptId", | 8 "id": "ScriptId", |
9 "type": "string", | 9 "type": "string", |
10 "description": "Unique script identifier." | 10 "description": "Unique script identifier." |
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
523 { | 523 { |
524 "name": "removeBreakpoint", | 524 "name": "removeBreakpoint", |
525 "parameters": [ | 525 "parameters": [ |
526 { "name": "breakpointId", "$ref": "BreakpointId" } | 526 { "name": "breakpointId", "$ref": "BreakpointId" } |
527 ], | 527 ], |
528 "description": "Removes JavaScript breakpoint." | 528 "description": "Removes JavaScript breakpoint." |
529 }, | 529 }, |
530 { | 530 { |
531 "name": "continueToLocation", | 531 "name": "continueToLocation", |
532 "parameters": [ | 532 "parameters": [ |
533 { "name": "location", "$ref": "Location", "description": "Lo cation to continue to." }, | 533 { "name": "location", "$ref": "Location", "description": "Lo cation to continue to." } |
534 { "name": "interstatementLocation", "type": "boolean", "opti onal": true, "experimental": true, "description": "Allows breakpoints at the int emediate positions inside statements." } | |
dgozman
2016/08/10 23:20:37
Doesn't check-protocol-version complain?
kozy
2016/08/10 23:22:08
No, I think because it's hidden/experimental flag.
| |
535 ], | 534 ], |
536 "description": "Continues execution until specific location is r eached." | 535 "description": "Continues execution until specific location is r eached." |
537 }, | 536 }, |
538 { | 537 { |
539 "name": "stepOver", | 538 "name": "stepOver", |
540 "description": "Steps over the statement." | 539 "description": "Steps over the statement." |
541 }, | 540 }, |
542 { | 541 { |
543 "name": "stepInto", | 542 "name": "stepInto", |
544 "description": "Steps into the function call." | 543 "description": "Steps into the function call." |
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1016 { | 1015 { |
1017 "name": "heapStatsUpdate", | 1016 "name": "heapStatsUpdate", |
1018 "description": "If heap objects tracking has been started then b ackend may send update for one or more fragments", | 1017 "description": "If heap objects tracking has been started then b ackend may send update for one or more fragments", |
1019 "parameters": [ | 1018 "parameters": [ |
1020 { "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."} | 1019 { "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."} |
1021 ] | 1020 ] |
1022 } | 1021 } |
1023 ] | 1022 ] |
1024 }] | 1023 }] |
1025 } | 1024 } |
OLD | NEW |