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

SetScriptSourceResponse

data class SetScriptSourceResponse

Response type for the DebuggerDomain.setScriptSource command.

Constructors

<init>

Response type for the DebuggerDomain.setScriptSource command.

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

Properties

asyncStackTrace

Async stack trace, if any.

val asyncStackTrace: StackTrace?

asyncStackTraceId

Async stack trace, if any.

val asyncStackTraceId: StackTraceId?

callFrames

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

val callFrames: List<CallFrame>?

exceptionDetails

Exception details if any.

val exceptionDetails: ExceptionDetails?

stackChanged

Whether current call stack was modified after applying the changes.

val stackChanged: Boolean?