Class Debugger.DisassembleWasmModuleResponse

java.lang.Object
org.openqa.selenium.devtools.v122.debugger.Debugger.DisassembleWasmModuleResponse
Enclosing class:
Debugger

public static class Debugger.DisassembleWasmModuleResponse extends Object
  • Constructor Details

  • Method Details

    • getStreamId

      public Optional<String> getStreamId()
      For large modules, return a stream from which additional chunks of disassembly can be read successively.
    • getTotalNumberOfLines

      public Integer getTotalNumberOfLines()
      The total number of lines in the disassembly text.
    • getFunctionBodyOffsets

      public List<Integer> getFunctionBodyOffsets()
      The offsets of all function bodies, in the format [start1, end1, start2, end2, ...] where all ends are exclusive.
    • getChunk

      public WasmDisassemblyChunk getChunk()
      The first chunk of disassembly.