DisassembleWasmModuleResponse

@Serializable
data class DisassembleWasmModuleResponse(val streamId: String? = null, val totalNumberOfLines: Int, val functionBodyOffsets: List<Int>, val chunk: WasmDisassemblyChunk)(source)

Response type for the DebuggerDomain.disassembleWasmModule command.

Constructors

Link copied to clipboard
constructor(streamId: String? = null, totalNumberOfLines: Int, functionBodyOffsets: List<Int>, chunk: 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
val streamId: String? = null

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.