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

Frame

import type { Frame } from "https://googleapis.deno.dev/v1/firebasecrashlytics:v1alpha.ts";

A frame in a stacktrace.

interface Frame {
address?: bigint;
blamed?: boolean;
column?: bigint;
file?: string;
library?: string;
line?: bigint;
offset?: bigint;
owner?: string;
symbol?: string;
}

§Properties

§
address?: bigint
[src]

The address in the binary image which contains the code. Present for native frames.

§
blamed?: boolean
[src]

True when the Crashlytics analysis has determined that this frame is likely to be the cause of the error.

§
column?: bigint
[src]

The column on the line.

§
file?: string
[src]

The name of the source file in which the frame is found.

§
library?: string
[src]

The display name of the library that includes the frame.

§
line?: bigint
[src]

The line number in the file of the frame.

§
offset?: bigint
[src]

The byte offset into the binary image that contains the code. Present for native frames.

§
owner?: string
[src]

One of DEVELOPER, VENDOR, RUNTIME, PLATFORM, or SYSTEM.

§
symbol?: string
[src]

The frame symbol after it has been deobfuscated or symbolicated. The raw symbol from the device if it could not be hydrated.