deno.com

interface Debugger.SetBreakpointByUrlParameterType

Properties #

#lineNumber: number

Line number to set breakpoint at.

#url: string | undefined
optional

URL of the resources to set breakpoint on.

#urlRegex: string | undefined
optional

Regex pattern for the URLs of the resources to set breakpoints on. Either url or urlRegex must be specified.

#scriptHash: string | undefined
optional

Script hash of the resources to set breakpoint on.

#columnNumber: number | undefined
optional

Offset in the line to set breakpoint at.

#condition: string | undefined
optional

Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.