pl.wendigo.chrome.domain.debugger / SetBreakpointRequest

SetBreakpointRequest

data class SetBreakpointRequest (source)

Represents request frame that can be used with Debugger.setBreakpoint method call.

Sets JavaScript breakpoint at a given location.

Constructors

<init>

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

Represents request frame that can be used with Debugger.setBreakpoint method call.

Properties

condition

val condition: String?

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

location

val location: Location

Location to set breakpoint in.