Class Debugger.DisassembleWasmModuleResponse
- java.lang.Object
-
- org.openqa.selenium.devtools.v105.debugger.Debugger.DisassembleWasmModuleResponse
-
- Enclosing class:
- Debugger
public static class Debugger.DisassembleWasmModuleResponse extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description DisassembleWasmModuleResponse(java.util.Optional<java.lang.String> streamId, java.lang.Integer totalNumberOfLines, java.util.List<java.lang.Integer> functionBodyOffsets, WasmDisassemblyChunk chunk)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description WasmDisassemblyChunk
getChunk()
The first chunk of disassembly.java.util.List<java.lang.Integer>
getFunctionBodyOffsets()
The offsets of all function bodies plus one additional entry pointing one by past the end of the last function.java.util.Optional<java.lang.String>
getStreamId()
For large modules, return a stream from which additional chunks of disassembly can be read successively.java.lang.Integer
getTotalNumberOfLines()
The total number of lines in the disassembly text.
-
-
-
Constructor Detail
-
DisassembleWasmModuleResponse
public DisassembleWasmModuleResponse(java.util.Optional<java.lang.String> streamId, java.lang.Integer totalNumberOfLines, java.util.List<java.lang.Integer> functionBodyOffsets, WasmDisassemblyChunk chunk)
-
-
Method Detail
-
getStreamId
public java.util.Optional<java.lang.String> getStreamId()
For large modules, return a stream from which additional chunks of disassembly can be read successively.
-
getTotalNumberOfLines
public java.lang.Integer getTotalNumberOfLines()
The total number of lines in the disassembly text.
-
getFunctionBodyOffsets
public java.util.List<java.lang.Integer> getFunctionBodyOffsets()
The offsets of all function bodies plus one additional entry pointing one by past the end of the last function.
-
getChunk
public WasmDisassemblyChunk getChunk()
The first chunk of disassembly.
-
-