interface Debugger.SetBreakpointByUrlParameterType
lineNumber: numberLine number to set breakpoint at.
optional
url: string | undefinedURL of the resources to set breakpoint on.
optional
urlRegex: string | undefinedRegex pattern for the URLs of the resources to set breakpoints on. Either url or urlRegex must be specified.
optional
scriptHash: string | undefinedScript hash of the resources to set breakpoint on.
optional
columnNumber: number | undefinedOffset in the line to set breakpoint at.
optional
condition: string | undefinedExpression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.