Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ScriptStackTraceElement

import type { ScriptStackTraceElement } from "https://googleapis.deno.dev/v1/script:v1.ts";

A stack trace through the script that shows where the execution failed.

interface ScriptStackTraceElement {
function?: string;
lineNumber?: number;
}

§Properties

§
function?: string
[src]

The name of the function that failed.

§
lineNumber?: number
[src]

The line number where the script failed.