devtools-protocol 0.0.1027117 → 0.0.1027518
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/json/js_protocol.json +1 -1
- package/package.json +1 -1
- package/pdl/js_protocol.pdl +2 -2
- package/types/protocol.d.ts +2 -2
package/json/js_protocol.json
CHANGED
@@ -589,7 +589,7 @@
|
|
589
589
|
},
|
590
590
|
{
|
591
591
|
"name": "functionBodyOffsets",
|
592
|
-
"description": "The offsets of all function bodies
|
592
|
+
"description": "The offsets of all function bodies, in the format [start1, end1,\nstart2, end2, ...] where all ends are exclusive.",
|
593
593
|
"type": "array",
|
594
594
|
"items": {
|
595
595
|
"type": "integer"
|
package/package.json
CHANGED
package/pdl/js_protocol.pdl
CHANGED
@@ -261,8 +261,8 @@ domain Debugger
|
|
261
261
|
optional string streamId
|
262
262
|
# The total number of lines in the disassembly text.
|
263
263
|
integer totalNumberOfLines
|
264
|
-
# The offsets of all function bodies
|
265
|
-
#
|
264
|
+
# The offsets of all function bodies, in the format [start1, end1,
|
265
|
+
# start2, end2, ...] where all ends are exclusive.
|
266
266
|
array of integer functionBodyOffsets
|
267
267
|
# The first chunk of disassembly.
|
268
268
|
WasmDisassemblyChunk chunk
|
package/types/protocol.d.ts
CHANGED
@@ -433,8 +433,8 @@ export namespace Protocol {
|
|
433
433
|
*/
|
434
434
|
totalNumberOfLines: integer;
|
435
435
|
/**
|
436
|
-
* The offsets of all function bodies
|
437
|
-
*
|
436
|
+
* The offsets of all function bodies, in the format [start1, end1,
|
437
|
+
* start2, end2, ...] where all ends are exclusive.
|
438
438
|
*/
|
439
439
|
functionBodyOffsets: integer[];
|
440
440
|
/**
|