pl.wendigo.chrome.api.debugger / SetBreakpointRequest

SetBreakpointRequest

data class SetBreakpointRequest (source)

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

Sets JavaScript breakpoint at a given location.

Link
Debugger#setBreakpoint method documentation.

See Also

DebuggerOperations.setBreakpoint

Constructors

<init>

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

Represents request frame that can be used with Debugger#setBreakpoint operation 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.