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.
@@ -589,7 +589,7 @@
589
589
  },
590
590
  {
591
591
  "name": "functionBodyOffsets",
592
- "description": "The offsets of all function bodies plus one additional entry pointing\none by past the end of the last function.",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1027117",
3
+ "version": "0.0.1027518",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -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 plus one additional entry pointing
265
- # one by past the end of the last function.
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
@@ -433,8 +433,8 @@ export namespace Protocol {
433
433
  */
434
434
  totalNumberOfLines: integer;
435
435
  /**
436
- * The offsets of all function bodies plus one additional entry pointing
437
- * one by past the end of the last function.
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
  /**