Debugger.Location - Node documentation
interface Debugger.Location

Usage in Deno

import { type Debugger } from "node:inspector";
type { Location } = Debugger;

Location in the source code.

Properties

Script identifier as reported in the Debugger.scriptParsed.

lineNumber: number

Line number in the script (0-based).

optional
columnNumber: number | undefined

Column number in the script (0-based).