Package-level declarations

Types

Link copied to clipboard
@Serializable
object DisableResponse

A dummy response object for the EventBreakpointsDomain.disable command. This command doesn't return any result at the moment, but this could happen in the future, or could have happened in the past. For forwards and backwards compatibility of the command method, we still declare this class even without properties.

Link copied to clipboard

EventBreakpoints permits setting JavaScript breakpoints on operations and events occurring in native code invoked from JavaScript. Once breakpoint is hit, it is reported through Debugger domain, similarly to regular breakpoints being hit.

Link copied to clipboard
@Serializable
data class RemoveInstrumentationBreakpointRequest(val eventName: String)

Request object containing input parameters for the EventBreakpointsDomain.removeInstrumentationBreakpoint command.

Link copied to clipboard

A dummy response object for the EventBreakpointsDomain.removeInstrumentationBreakpoint command. This command doesn't return any result at the moment, but this could happen in the future, or could have happened in the past. For forwards and backwards compatibility of the command method, we still declare this class even without properties.

Link copied to clipboard
@Serializable
data class SetInstrumentationBreakpointRequest(val eventName: String)

Request object containing input parameters for the EventBreakpointsDomain.setInstrumentationBreakpoint command.

Link copied to clipboard

A dummy response object for the EventBreakpointsDomain.setInstrumentationBreakpoint command. This command doesn't return any result at the moment, but this could happen in the future, or could have happened in the past. For forwards and backwards compatibility of the command method, we still declare this class even without properties.