Class Debugger.DisassembleWasmModuleResponse
java.lang.Object
org.openqa.selenium.devtools.v122.debugger.Debugger.DisassembleWasmModuleResponse
- Enclosing class:
- Debugger
-
Constructor Summary
ConstructorsConstructorDescriptionDisassembleWasmModuleResponse
(Optional<String> streamId, Integer totalNumberOfLines, List<Integer> functionBodyOffsets, WasmDisassemblyChunk chunk) -
Method Summary
Modifier and TypeMethodDescriptiongetChunk()
The first chunk of disassembly.The offsets of all function bodies, in the format [start1, end1, start2, end2, ...] where all ends are exclusive.For large modules, return a stream from which additional chunks of disassembly can be read successively.The total number of lines in the disassembly text.
-
Constructor Details
-
DisassembleWasmModuleResponse
-
-
Method Details
-
getStreamId
For large modules, return a stream from which additional chunks of disassembly can be read successively. -
getTotalNumberOfLines
The total number of lines in the disassembly text. -
getFunctionBodyOffsets
The offsets of all function bodies, in the format [start1, end1, start2, end2, ...] where all ends are exclusive. -
getChunk
The first chunk of disassembly.
-