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

Position

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

Position contains source position information about the stack trace element such as line number, column number and length of the code block in bytes.

interface Position {
column?: bigint;
length?: bigint;
line?: bigint;
}

§Properties

§
column?: bigint
[src]

The source code column position (of the line) the current instruction was generated from.

§
length?: bigint
[src]

The number of bytes of source code making up this stack trace element.

§
line?: bigint
[src]

The source code line number the current instruction was generated from.