Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
interface Protocol.Runtime.StackTrace
import { type Protocol } from "https://deno.land/x/puppeteer@14.1.1/vendor/puppeteer-core/puppeteer/api-docs-entry.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.