pl.wendigo.chrome.domain.debugger / SetScriptSourceResponse

SetScriptSourceResponse

data class SetScriptSourceResponse (source)

Represents response frame for Debugger.setScriptSource method call.

Edits JavaScript source live.

Constructors

<init>

SetScriptSourceResponse(callFrames: List<CallFrame>? = null, stackChanged: Boolean? = null, asyncStackTrace: StackTrace? = null, exceptionDetails: ExceptionDetails? = null)

Represents response frame for Debugger.setScriptSource method call.

Properties

asyncStackTrace

val asyncStackTrace: StackTrace?

Async stack trace, if any.

callFrames

val callFrames: List<CallFrame>?

New stack trace in case editing has happened while VM was stopped.

exceptionDetails

val exceptionDetails: ExceptionDetails?

Exception details if any.

stackChanged

val stackChanged: Boolean?

Whether current call stack was modified after applying the changes.