Skip to main content
Deno 2 is finally here 🎉️
Learn more
Latest
interface default.Debugger.BreakLocation
import { type default } from "https://deno.land/x/pptr@1.2.0/vendor/devtools-protocol/protocol.d.ts";
const { BreakLocation } = default.Debugger;

Properties

Script identifier as reported in the Debugger.scriptParsed.

lineNumber: integer

Line number in the script (0-based).

optional
columnNumber: integer

Column number in the script (0-based).

optional
type: "debuggerStatement" | "call" | "return"

(BreakLocationType enum)