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

StackFrame

import type { StackFrame } from "https://googleapis.deno.dev/v1/cloudtrace:v2.ts";

Represents a single stack frame in a stack trace.

interface StackFrame {
columnNumber?: bigint;
fileName?: TruncatableString;
functionName?: TruncatableString;
lineNumber?: bigint;
loadModule?: Module;
originalFunctionName?: TruncatableString;
sourceVersion?: TruncatableString;
}

§Properties

§
columnNumber?: bigint
[src]

The column number where the function call appears, if available. This is important in JavaScript because of its anonymous functions.

§

The name of the source file where the function call appears (up to 256 bytes).

§
functionName?: TruncatableString
[src]

The fully-qualified name that uniquely identifies the function or method that is active in this frame (up to 1024 bytes).

§
lineNumber?: bigint
[src]

The line number in file_name where the function call appears.

§
loadModule?: Module
[src]

The binary module from where the code was loaded.

§
originalFunctionName?: TruncatableString
[src]

An un-mangled function name, if function_name is mangled. To get information about name mangling, run this search. The name can be fully-qualified (up to 1024 bytes).

§
sourceVersion?: TruncatableString
[src]

The version of the deployed source code (up to 128 bytes).