Skip to main content
Deno 2 is finally here 🎉️
Learn more
Latest
interface Protocol.Runtime.StackTrace
import { type Protocol } from "https://deno.land/x/pptr@1.2.0/vendor/devtools-protocol/protocol.d.ts";
const { StackTrace } = Protocol.Runtime;

Call frames for assertions or error messages.

Properties

optional
description: string

String label of this stack trace. For async traces this may be a name of the function that initiated the async call.

callFrames: CallFrame[]

JavaScript function name.

optional
parent: StackTrace

Asynchronous JavaScript stack trace that preceded this stack, if available.

optional
parentId: StackTraceId

Asynchronous JavaScript stack trace that preceded this stack, if available.