chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.debugger / SetBreakpointRequest

SetBreakpointRequest

data class SetBreakpointRequest

Request object containing input parameters for the DebuggerDomain.setBreakpoint command.

Constructors

<init>

Request object containing input parameters for the DebuggerDomain.setBreakpoint command.

SetBreakpointRequest(location: Location, condition: String? = null)

Properties

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?

location

Location to set breakpoint in.

val location: Location