DisassembleWasmModuleReturn

@Serializable
data class DisassembleWasmModuleReturn(val streamId: String?, val totalNumberOfLines: Int, val functionBodyOffsets: List<Int>, val chunk: Debugger.WasmDisassemblyChunk)

Constructors

Link copied to clipboard
constructor(streamId: String?, totalNumberOfLines: Int, functionBodyOffsets: List<Int>, chunk: Debugger.WasmDisassemblyChunk)

Properties

Link copied to clipboard

The first chunk of disassembly.

Link copied to clipboard

The offsets of all function bodies, in the format start1, end1, start2, end2, ... where all ends are exclusive.

Link copied to clipboard

For large modules, return a stream from which additional chunks of disassembly can be read successively.

Link copied to clipboard

The total number of lines in the disassembly text.