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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 { "name": "lineNumber", "type": "integer", "description": "L
ine number in the script (0-based)." }, | 340 { "name": "lineNumber", "type": "integer", "description": "L
ine number in the script (0-based)." }, |
341 { "name": "columnNumber", "type": "integer", "optional": tru
e, "description": "Column number in the script (0-based)." } | 341 { "name": "columnNumber", "type": "integer", "optional": tru
e, "description": "Column number in the script (0-based)." } |
342 ], | 342 ], |
343 "description": "Location in the source code." | 343 "description": "Location in the source code." |
344 }, | 344 }, |
345 { | 345 { |
346 "id": "ScriptPosition", | 346 "id": "ScriptPosition", |
347 "hidden": true, | 347 "hidden": true, |
348 "type": "object", | 348 "type": "object", |
349 "properties": [ | 349 "properties": [ |
350 { "name": "line", "type": "integer" }, | 350 { "name": "lineNumber", "type": "integer" }, |
351 { "name": "column", "type": "integer" } | 351 { "name": "columnNumber", "type": "integer" } |
352 ], | 352 ], |
353 "description": "Location in the source code." | 353 "description": "Location in the source code." |
354 }, | 354 }, |
355 { | 355 { |
356 "id": "FunctionDetails", | 356 "id": "FunctionDetails", |
357 "hidden": true, | 357 "hidden": true, |
358 "type": "object", | 358 "type": "object", |
359 "properties": [ | 359 "properties": [ |
360 { "name": "location", "$ref": "Location", "optional": true,
"description": "Location of the function, none for native functions." }, | 360 { "name": "location", "$ref": "Location", "optional": true,
"description": "Location of the function, none for native functions." }, |
361 { "name": "functionName", "type": "string", "description": "
Name of the function." }, | 361 { "name": "functionName", "type": "string", "description": "
Name of the function." }, |
(...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1016 { | 1016 { |
1017 "name": "heapStatsUpdate", | 1017 "name": "heapStatsUpdate", |
1018 "description": "If heap objects tracking has been started then b
ackend may send update for one or more fragments", | 1018 "description": "If heap objects tracking has been started then b
ackend may send update for one or more fragments", |
1019 "parameters": [ | 1019 "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."} | 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."} |
1021 ] | 1021 ] |
1022 } | 1022 } |
1023 ] | 1023 ] |
1024 }] | 1024 }] |
1025 } | 1025 } |
OLD | NEW |