Skip to main content
Module

x/puppeteer_plus/mod.ts>Protocol.Debugger.DisassembleWasmModuleResponse

Deno port of puppeteer base on latest TypeScript source.
Go to Latest
interface Protocol.Debugger.DisassembleWasmModuleResponse
import { type Protocol } from "https://deno.land/x/puppeteer_plus@0.14.0/mod.ts";
const { DisassembleWasmModuleResponse } = Protocol.Debugger;

Properties

optional
streamId: string

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

totalNumberOfLines: integer

The total number of lines in the disassembly text.

functionBodyOffsets: integer[]

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

chunk: WasmDisassemblyChunk

The first chunk of disassembly.