pl.wendigo.chrome.api.debugger / SetScriptSourceResponse

SetScriptSourceResponse

data class SetScriptSourceResponse (source)

Represents response frame that is returned from Debugger#setScriptSource operation call. Edits JavaScript source live.

Link
Debugger#setScriptSource method documentation.

See Also

DebuggerOperations.setScriptSource

Constructors

<init>

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

Represents response frame that is returned from Debugger#setScriptSource operation call. Edits JavaScript source live.

Properties

asyncStackTrace

val asyncStackTrace: StackTrace?

Async stack trace, if any.

asyncStackTraceId

val asyncStackTraceId: StackTraceId?

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.