SetBreakpointOnFunctionCallRequest

@Serializable
data class SetBreakpointOnFunctionCallRequest(val objectId: RemoteObjectId, val condition: String? = null)(source)

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

Constructors

Link copied to clipboard
constructor(objectId: RemoteObjectId, condition: String? = null)

Types

Link copied to clipboard
class Builder(val objectId: RemoteObjectId)

Properties

Link copied to clipboard
val condition: String? = null

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

Link copied to clipboard

Function object id.