data class SetBreakpointByUrlRequest
Request object containing input parameters for the DebuggerDomain.setBreakpointByUrl command.
<init> |
Request object containing input parameters for the DebuggerDomain.setBreakpointByUrl command. SetBreakpointByUrlRequest(lineNumber: Int, url: String? = null, urlRegex: String? = null, scriptHash: String? = null, columnNumber: Int? = null, condition: String? = null) |
columnNumber |
Offset in the line to set breakpoint at. val columnNumber: Int? |
condition |
Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true. val condition: String? |
lineNumber |
Line number to set breakpoint at. val lineNumber: Int |
scriptHash |
Script hash of the resources to set breakpoint on. val scriptHash: String? |
url |
URL of the resources to set breakpoint on. val url: String? |
urlRegex |
Regex pattern for the URLs of the resources to set breakpoints on. Either val urlRegex: String? |