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 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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": "targetCallFrames", "type": "string", "enum": ["an
y", "current"], "optional": true, "experimental": true } | 561 { "name": "targetCallFrames", "type": "string", "enum": ["an
y", "current", "deeper"], "optional": true, "experimental": true } |
562 ], | 562 ], |
563 "description": "Continues execution until specific location is r
eached." | 563 "description": "Continues execution until specific location is r
eached." |
564 }, | 564 }, |
565 { | 565 { |
566 "name": "stepOver", | 566 "name": "stepOver", |
567 "description": "Steps over the statement." | 567 "description": "Steps over the statement." |
568 }, | 568 }, |
569 { | 569 { |
570 "name": "stepInto", | 570 "name": "stepInto", |
571 "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... |
1077 { | 1077 { |
1078 "name": "heapStatsUpdate", | 1078 "name": "heapStatsUpdate", |
1079 "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", |
1080 "parameters": [ | 1080 "parameters": [ |
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 { "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."} |
1082 ] | 1082 ] |
1083 } | 1083 } |
1084 ] | 1084 ] |
1085 }] | 1085 }] |
1086 } | 1086 } |
OLD | NEW |