Documentation ¶
Overview ¶
Package eventbreakpoints implements the EventBreakpoints domain. 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.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type RemoveInstrumentationBreakpointArgs ¶
type RemoveInstrumentationBreakpointArgs struct {
EventName string `json:"eventName"` // Instrumentation name to stop on.
}
RemoveInstrumentationBreakpointArgs represents the arguments for RemoveInstrumentationBreakpoint in the EventBreakpoints domain.
func NewRemoveInstrumentationBreakpointArgs ¶
func NewRemoveInstrumentationBreakpointArgs(eventName string) *RemoveInstrumentationBreakpointArgs
NewRemoveInstrumentationBreakpointArgs initializes RemoveInstrumentationBreakpointArgs with the required arguments.
type SetInstrumentationBreakpointArgs ¶
type SetInstrumentationBreakpointArgs struct {
EventName string `json:"eventName"` // Instrumentation name to stop on.
}
SetInstrumentationBreakpointArgs represents the arguments for SetInstrumentationBreakpoint in the EventBreakpoints domain.
func NewSetInstrumentationBreakpointArgs ¶
func NewSetInstrumentationBreakpointArgs(eventName string) *SetInstrumentationBreakpointArgs
NewSetInstrumentationBreakpointArgs initializes SetInstrumentationBreakpointArgs with the required arguments.