Debugger.SetBreakpointByUrlParameterType - Node documentation
interface Debugger.SetBreakpointByUrlParameterType

Usage in Deno

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

Properties

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 url or urlRegex 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.