data class PausedEvent : DebuggerEvent
Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
<init> |
Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria. PausedEvent(callFrames: List<CallFrame>, reason: String, data: JsonElement? = null, hitBreakpoints: List<String>? = null, asyncStackTrace: StackTrace? = null, asyncStackTraceId: StackTraceId? = null, asyncCallStackTraceId: StackTraceId? = null) |
asyncCallStackTraceId |
Never present, will be removed. val |
asyncStackTrace |
Async stack trace, if any. val asyncStackTrace: StackTrace? |
asyncStackTraceId |
Async stack trace, if any. val asyncStackTraceId: StackTraceId? |
callFrames |
Call stack the virtual machine stopped on. val callFrames: List<CallFrame> |
data |
Object containing break-specific auxiliary properties. val data: JsonElement? |
hitBreakpoints |
Hit breakpoints IDs val hitBreakpoints: List<String>? |
reason |
Pause reason. val reason: String |