| 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 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 550 ], | 550 ], |
| 551 "returns": [ | 551 "returns": [ |
| 552 { "name": "locations", "type": "array", "items": { "$ref": "
BreakLocation" }, "description": "List of the possible breakpoint locations." } | 552 { "name": "locations", "type": "array", "items": { "$ref": "
BreakLocation" }, "description": "List of the possible breakpoint locations." } |
| 553 ], | 553 ], |
| 554 "description": "Returns possible locations for breakpoint. scrip
tId in start and end range locations should be the same.", | 554 "description": "Returns possible locations for breakpoint. scrip
tId in start and end range locations should be the same.", |
| 555 "experimental": true | 555 "experimental": true |
| 556 }, | 556 }, |
| 557 { | 557 { |
| 558 "name": "continueToLocation", | 558 "name": "continueToLocation", |
| 559 "parameters": [ | 559 "parameters": [ |
| 560 { "name": "location", "$ref": "Location", "description": "Lo
cation to continue to." } | 560 { "name": "location", "$ref": "Location", "description": "Lo
cation to continue to." }, |
| 561 { "name": "strategy", "type": "string", "enum": ["default",
"inCurrentFrame"], "optional": true, "experimental": true } |
| 561 ], | 562 ], |
| 562 "description": "Continues execution until specific location is r
eached." | 563 "description": "Continues execution until specific location is r
eached." |
| 563 }, | 564 }, |
| 564 { | 565 { |
| 565 "name": "stepOver", | 566 "name": "stepOver", |
| 566 "description": "Steps over the statement." | 567 "description": "Steps over the statement." |
| 567 }, | 568 }, |
| 568 { | 569 { |
| 569 "name": "stepInto", | 570 "name": "stepInto", |
| 570 "description": "Steps into the function call." | 571 "description": "Steps into the function call." |
| (...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1076 { | 1077 { |
| 1077 "name": "heapStatsUpdate", | 1078 "name": "heapStatsUpdate", |
| 1078 "description": "If heap objects tracking has been started then b
ackend may send update for one or more fragments", | 1079 "description": "If heap objects tracking has been started then b
ackend may send update for one or more fragments", |
| 1079 "parameters": [ | 1080 "parameters": [ |
| 1080 { "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."} | 1081 { "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."} |
| 1081 ] | 1082 ] |
| 1082 } | 1083 } |
| 1083 ] | 1084 ] |
| 1084 }] | 1085 }] |
| 1085 } | 1086 } |
| OLD | NEW |