SetScriptSourceReturn

@Serializable
data class SetScriptSourceReturn(val callFrames: List<Debugger.CallFrame>?, val stackChanged: Boolean?, val asyncStackTrace: Runtime.StackTrace?, val asyncStackTraceId: Runtime.StackTraceId?, val status: String, val exceptionDetails: Runtime.ExceptionDetails?)

Constructors

Link copied to clipboard
constructor(callFrames: List<Debugger.CallFrame>?, stackChanged: Boolean?, asyncStackTrace: Runtime.StackTrace?, asyncStackTraceId: Runtime.StackTraceId?, status: String, exceptionDetails: Runtime.ExceptionDetails?)

Properties

Link copied to clipboard

Async stack trace, if any.

Link copied to clipboard

Async stack trace, if any.

Link copied to clipboard

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

Link copied to clipboard

Exception details if any. Only present when status is CompileError.

Link copied to clipboard

Whether current call stack was modified after applying the changes.

Link copied to clipboard

Whether the operation was successful or not. Only Ok denotes a successful live edit while the other enum variants denote why the live edit failed.