PausedParameter

@Serializable
data class PausedParameter(val callFrames: List<Debugger.CallFrame>, val reason: String, val data: Map<String, JsonElement>? = null, val hitBreakpoints: List<String>? = null, val asyncStackTrace: Runtime.StackTrace? = null, val asyncStackTraceId: Runtime.StackTraceId? = null, val asyncCallStackTraceId: Runtime.StackTraceId? = null)

Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.

Constructors

Link copied to clipboard
constructor(callFrames: List<Debugger.CallFrame>, reason: String, data: Map<String, JsonElement>? = null, hitBreakpoints: List<String>? = null, asyncStackTrace: Runtime.StackTrace? = null, asyncStackTraceId: Runtime.StackTraceId? = null, asyncCallStackTraceId: Runtime.StackTraceId? = null)

Properties

Link copied to clipboard

Never present, will be removed.

Link copied to clipboard

Async stack trace, if any.

Link copied to clipboard

Async stack trace, if any.

Link copied to clipboard

Call stack the virtual machine stopped on.

Link copied to clipboard
val data: Map<String, JsonElement>? = null

Object containing break-specific auxiliary properties.

Link copied to clipboard
val hitBreakpoints: List<String>? = null

Hit breakpoints IDs

Link copied to clipboard

Pause reason.