SetBreakpointParameter

@Serializable
data class SetBreakpointParameter(val location: Debugger.Location, val condition: String? = null)

Constructors

Link copied to clipboard
constructor(location: Debugger.Location, condition: String? = null)

Properties

Link copied to clipboard
val condition: String? = null

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

Link copied to clipboard

Location to set breakpoint in.