pl.wendigo.chrome.api.debugger / PausedEvent

PausedEvent

data class PausedEvent : Event (source)

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

Link
Debugger#paused event documentation.

Constructors

<init>

PausedEvent(callFrames: List<CallFrame>, reason: String, data: JsonNode? = null, hitBreakpoints: List<String>? = null, asyncStackTrace: StackTrace? = null, asyncStackTraceId: StackTraceId? = null, asyncCallStackTraceId: StackTraceId? = null)

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

Properties

asyncCallStackTraceId

val asyncCallStackTraceId: StackTraceId?

Never present, will be removed.

asyncStackTrace

val asyncStackTrace: StackTrace?

Async stack trace, if any.

asyncStackTraceId

val asyncStackTraceId: StackTraceId?

Async stack trace, if any.

callFrames

val callFrames: List<CallFrame>

Call stack the virtual machine stopped on.

data

val data: JsonNode?

Object containing break-specific auxiliary properties.

hitBreakpoints

val hitBreakpoints: List<String>?

Hit breakpoints IDs

reason

val reason: String

Pause reason.

Inherited Functions

protocolDomain

fun protocolDomain(): String