interface Debugger.PausedEventDataType
Usage in Deno
import { Debugger } from "node:inspector";
Call stack the virtual machine stopped on.
reason: string
Pause reason.
optional
data: { } | undefined
Object containing break-specific auxiliary properties.
optional
hitBreakpoints: string[] | undefined
Hit breakpoints IDs
optional
asyncStackTrace: Runtime.StackTrace | undefined
Async stack trace, if any.
optional
asyncStackTraceId: Runtime.StackTraceId | undefined
Async stack trace, if any.
optional
asyncCallStackTraceId: Runtime.StackTraceId | undefined
Just scheduled async call will have this stack trace as parent stack during async execution. This field is available only after <code>Debugger.stepInto</code> call with <code>breakOnAsynCall</code> flag.