pl.wendigo.chrome.api.debugger / SetBreakpointOnFunctionCallRequest

SetBreakpointOnFunctionCallRequest

data class SetBreakpointOnFunctionCallRequest (source)

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

Sets JavaScript breakpoint before each call to the given function. If another function was created from the same source as a given one, calling it will also trigger the breakpoint.

Link
Debugger#setBreakpointOnFunctionCall method documentation.

See Also

DebuggerOperations.setBreakpointOnFunctionCall

Constructors

<init>

SetBreakpointOnFunctionCallRequest(objectId: RemoteObjectId, condition: String? = null)

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

Properties

condition

val condition: String?

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

objectId

val objectId: RemoteObjectId

Function object id.