chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.debugger / GetScriptSourceResponse

GetScriptSourceResponse

data class GetScriptSourceResponse

Response type for the DebuggerDomain.getScriptSource command.

Constructors

<init>

Response type for the DebuggerDomain.getScriptSource command.

GetScriptSourceResponse(scriptSource: String, bytecode: String? = null)

Properties

bytecode

Wasm bytecode. (Encoded as a base64 string when passed over JSON)

val bytecode: String?

scriptSource

Script source (empty in case of Wasm bytecode).

val scriptSource: String