interface Debugger.SetBreakpointByUrlParameterType
Usage in Deno
import { Debugger } from "node:inspector/promises";
lineNumber: number
Line number to set breakpoint at.
optional
url: string | undefined
URL of the resources to set breakpoint on.
optional
urlRegex: string | undefined
Regex pattern for the URLs of the resources to set breakpoints on. Either <code>url</code> or <code>urlRegex</code> must be specified.
optional
scriptHash: string | undefined
Script hash of the resources to set breakpoint on.
optional
columnNumber: number | undefined
Offset in the line to set breakpoint at.
optional
condition: string | undefined
Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.