pl.wendigo.chrome.api.debugger / EnableRequest

EnableRequest

data class EnableRequest (source)

Represents request frame that can be used with Debugger#enable operation call.

Enables debugger for the given page. Clients should not assume that the debugging has been enabled until the result for this command is received.

Link
Debugger#enable method documentation.

See Also

DebuggerOperations.enable

Constructors

<init>

EnableRequest(maxScriptsCacheSize: Double? = null, supportsWasmDwarf: Boolean? = null)

Represents request frame that can be used with Debugger#enable operation call.

Properties

maxScriptsCacheSize

val maxScriptsCacheSize: Double?

The maximum size in bytes of collected scripts (not referenced by other heap objects) the debugger can hold. Puts no limit if paramter is omitted.

supportsWasmDwarf

val supportsWasmDwarf: Boolean?

Whether to report Wasm modules as raw binaries instead of disassembled functions.