debugger

package
v0.0.0-...-ab6d619 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 17, 2024 License: MIT Imports: 9 Imported by: 15

Documentation

Overview

Package debugger provides the Chrome DevTools Protocol commands, types, and events for the Debugger domain.

Debugger domain exposes JavaScript debugging capabilities. It allows setting and removing breakpoints, stepping through execution, exploring stack traces, etc.

Generated by the cdproto-gen command.

Index

Constants

View Source
const (
	CommandContinueToLocation           = "Debugger.continueToLocation"
	CommandDisable                      = "Debugger.disable"
	CommandEnable                       = "Debugger.enable"
	CommandEvaluateOnCallFrame          = "Debugger.evaluateOnCallFrame"
	CommandGetPossibleBreakpoints       = "Debugger.getPossibleBreakpoints"
	CommandGetScriptSource              = "Debugger.getScriptSource"
	CommandDisassembleWasmModule        = "Debugger.disassembleWasmModule"
	CommandNextWasmDisassemblyChunk     = "Debugger.nextWasmDisassemblyChunk"
	CommandGetStackTrace                = "Debugger.getStackTrace"
	CommandPause                        = "Debugger.pause"
	CommandRemoveBreakpoint             = "Debugger.removeBreakpoint"
	CommandRestartFrame                 = "Debugger.restartFrame"
	CommandResume                       = "Debugger.resume"
	CommandSearchInContent              = "Debugger.searchInContent"
	CommandSetAsyncCallStackDepth       = "Debugger.setAsyncCallStackDepth"
	CommandSetBlackboxPatterns          = "Debugger.setBlackboxPatterns"
	CommandSetBlackboxedRanges          = "Debugger.setBlackboxedRanges"
	CommandSetBreakpoint                = "Debugger.setBreakpoint"
	CommandSetInstrumentationBreakpoint = "Debugger.setInstrumentationBreakpoint"
	CommandSetBreakpointByURL           = "Debugger.setBreakpointByUrl"
	CommandSetBreakpointOnFunctionCall  = "Debugger.setBreakpointOnFunctionCall"
	CommandSetBreakpointsActive         = "Debugger.setBreakpointsActive"
	CommandSetPauseOnExceptions         = "Debugger.setPauseOnExceptions"
	CommandSetReturnValue               = "Debugger.setReturnValue"
	CommandSetScriptSource              = "Debugger.setScriptSource"
	CommandSetSkipAllPauses             = "Debugger.setSkipAllPauses"
	CommandSetVariableValue             = "Debugger.setVariableValue"
	CommandStepInto                     = "Debugger.stepInto"
	CommandStepOut                      = "Debugger.stepOut"
	CommandStepOver                     = "Debugger.stepOver"
)

Command names.

Variables

This section is empty.

Functions

This section is empty.

Types

type BreakLocation

type BreakLocation struct {
	ScriptID     runtime.ScriptID  `json:"scriptId"`               // Script identifier as reported in the Debugger.scriptParsed.
	LineNumber   int64             `json:"lineNumber"`             // Line number in the script (0-based).
	ColumnNumber int64             `json:"columnNumber,omitempty"` // Column number in the script (0-based).
	Type         BreakLocationType `json:"type,omitempty"`
}

BreakLocation [no description].

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#type-BreakLocation

func (BreakLocation) MarshalEasyJSON

func (v BreakLocation) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (BreakLocation) MarshalJSON

func (v BreakLocation) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*BreakLocation) UnmarshalEasyJSON

func (v *BreakLocation) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*BreakLocation) UnmarshalJSON

func (v *BreakLocation) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type BreakLocationType

type BreakLocationType string

BreakLocationType [no description].

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#type-BreakLocation

const (
	BreakLocationTypeDebuggerStatement BreakLocationType = "debuggerStatement"
	BreakLocationTypeCall              BreakLocationType = "call"
	BreakLocationTypeReturn            BreakLocationType = "return"
)

BreakLocationType values.

func (BreakLocationType) MarshalEasyJSON

func (t BreakLocationType) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (BreakLocationType) MarshalJSON

func (t BreakLocationType) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (BreakLocationType) String

func (t BreakLocationType) String() string

String returns the BreakLocationType as string value.

func (*BreakLocationType) UnmarshalEasyJSON

func (t *BreakLocationType) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*BreakLocationType) UnmarshalJSON

func (t *BreakLocationType) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type BreakpointID

type BreakpointID string

BreakpointID breakpoint identifier.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#type-BreakpointId

func (BreakpointID) String

func (t BreakpointID) String() string

String returns the BreakpointID as string value.

type CallFrame

type CallFrame struct {
	CallFrameID      CallFrameID           `json:"callFrameId"`                // Call frame identifier. This identifier is only valid while the virtual machine is paused.
	FunctionName     string                `json:"functionName"`               // Name of the JavaScript function called on this call frame.
	FunctionLocation *Location             `json:"functionLocation,omitempty"` // Location in the source code.
	Location         *Location             `json:"location"`                   // Location in the source code.
	ScopeChain       []*Scope              `json:"scopeChain"`                 // Scope chain for this call frame.
	This             *runtime.RemoteObject `json:"this"`                       // this object for this call frame.
	ReturnValue      *runtime.RemoteObject `json:"returnValue,omitempty"`      // The value being returned, if the function is at return point.
	CanBeRestarted   bool                  `json:"canBeRestarted,omitempty"`   // Valid only while the VM is paused and indicates whether this frame can be restarted or not. Note that a true value here does not guarantee that Debugger#restartFrame with this CallFrameId will be successful, but it is very likely.
}

CallFrame JavaScript call frame. Array of call frames form the call stack.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#type-CallFrame

func (CallFrame) MarshalEasyJSON

func (v CallFrame) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (CallFrame) MarshalJSON

func (v CallFrame) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*CallFrame) UnmarshalEasyJSON

func (v *CallFrame) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*CallFrame) UnmarshalJSON

func (v *CallFrame) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type CallFrameID

type CallFrameID string

CallFrameID call frame identifier.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#type-CallFrameId

func (CallFrameID) String

func (t CallFrameID) String() string

String returns the CallFrameID as string value.

type ContinueToLocationParams

type ContinueToLocationParams struct {
	Location         *Location                          `json:"location"` // Location to continue to.
	TargetCallFrames ContinueToLocationTargetCallFrames `json:"targetCallFrames,omitempty"`
}

ContinueToLocationParams continues execution until specific location is reached.

func ContinueToLocation

func ContinueToLocation(location *Location) *ContinueToLocationParams

ContinueToLocation continues execution until specific location is reached.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-continueToLocation

parameters:

location - Location to continue to.

func (*ContinueToLocationParams) Do

func (p *ContinueToLocationParams) Do(ctx context.Context) (err error)

Do executes Debugger.continueToLocation against the provided context.

func (ContinueToLocationParams) MarshalEasyJSON

func (v ContinueToLocationParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ContinueToLocationParams) MarshalJSON

func (v ContinueToLocationParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ContinueToLocationParams) UnmarshalEasyJSON

func (v *ContinueToLocationParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ContinueToLocationParams) UnmarshalJSON

func (v *ContinueToLocationParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

func (ContinueToLocationParams) WithTargetCallFrames

WithTargetCallFrames [no description].

type ContinueToLocationTargetCallFrames

type ContinueToLocationTargetCallFrames string

ContinueToLocationTargetCallFrames [no description].

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-continueToLocation

const (
	ContinueToLocationTargetCallFramesAny     ContinueToLocationTargetCallFrames = "any"
	ContinueToLocationTargetCallFramesCurrent ContinueToLocationTargetCallFrames = "current"
)

ContinueToLocationTargetCallFrames values.

func (ContinueToLocationTargetCallFrames) MarshalEasyJSON

func (t ContinueToLocationTargetCallFrames) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (ContinueToLocationTargetCallFrames) MarshalJSON

func (t ContinueToLocationTargetCallFrames) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (ContinueToLocationTargetCallFrames) String

String returns the ContinueToLocationTargetCallFrames as string value.

func (*ContinueToLocationTargetCallFrames) UnmarshalEasyJSON

func (t *ContinueToLocationTargetCallFrames) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*ContinueToLocationTargetCallFrames) UnmarshalJSON

func (t *ContinueToLocationTargetCallFrames) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type DebugSymbols

type DebugSymbols struct {
	Type        DebugSymbolsType `json:"type"`                  // Type of the debug symbols.
	ExternalURL string           `json:"externalURL,omitempty"` // URL of the external symbol source.
}

DebugSymbols debug symbols available for a wasm script.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#type-DebugSymbols

func (DebugSymbols) MarshalEasyJSON

func (v DebugSymbols) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (DebugSymbols) MarshalJSON

func (v DebugSymbols) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*DebugSymbols) UnmarshalEasyJSON

func (v *DebugSymbols) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*DebugSymbols) UnmarshalJSON

func (v *DebugSymbols) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type DebugSymbolsType

type DebugSymbolsType string

DebugSymbolsType type of the debug symbols.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#type-DebugSymbols

const (
	DebugSymbolsTypeNone          DebugSymbolsType = "None"
	DebugSymbolsTypeSourceMap     DebugSymbolsType = "SourceMap"
	DebugSymbolsTypeEmbeddedDWARF DebugSymbolsType = "EmbeddedDWARF"
	DebugSymbolsTypeExternalDWARF DebugSymbolsType = "ExternalDWARF"
)

DebugSymbolsType values.

func (DebugSymbolsType) MarshalEasyJSON

func (t DebugSymbolsType) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (DebugSymbolsType) MarshalJSON

func (t DebugSymbolsType) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (DebugSymbolsType) String

func (t DebugSymbolsType) String() string

String returns the DebugSymbolsType as string value.

func (*DebugSymbolsType) UnmarshalEasyJSON

func (t *DebugSymbolsType) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*DebugSymbolsType) UnmarshalJSON

func (t *DebugSymbolsType) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type DisableParams

type DisableParams struct{}

DisableParams disables debugger for given page.

func Disable

func Disable() *DisableParams

Disable disables debugger for given page.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-disable

func (*DisableParams) Do

func (p *DisableParams) Do(ctx context.Context) (err error)

Do executes Debugger.disable against the provided context.

func (DisableParams) MarshalEasyJSON

func (v DisableParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (DisableParams) MarshalJSON

func (v DisableParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*DisableParams) UnmarshalEasyJSON

func (v *DisableParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*DisableParams) UnmarshalJSON

func (v *DisableParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type DisassembleWasmModuleParams

type DisassembleWasmModuleParams struct {
	ScriptID runtime.ScriptID `json:"scriptId"` // Id of the script to disassemble
}

DisassembleWasmModuleParams [no description].

func DisassembleWasmModule

func DisassembleWasmModule(scriptID runtime.ScriptID) *DisassembleWasmModuleParams

DisassembleWasmModule [no description].

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-disassembleWasmModule

parameters:

scriptID - Id of the script to disassemble

func (*DisassembleWasmModuleParams) Do

func (p *DisassembleWasmModuleParams) Do(ctx context.Context) (streamID string, totalNumberOfLines int64, functionBodyOffsets []int64, chunk *WasmDisassemblyChunk, err error)

Do executes Debugger.disassembleWasmModule against the provided context.

returns:

streamID - For large modules, return a stream from which additional chunks of disassembly can be read successively.
totalNumberOfLines - The total number of lines in the disassembly text.
functionBodyOffsets - The offsets of all function bodies, in the format [start1, end1, start2, end2, ...] where all ends are exclusive.
chunk - The first chunk of disassembly.

func (DisassembleWasmModuleParams) MarshalEasyJSON

func (v DisassembleWasmModuleParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (DisassembleWasmModuleParams) MarshalJSON

func (v DisassembleWasmModuleParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*DisassembleWasmModuleParams) UnmarshalEasyJSON

func (v *DisassembleWasmModuleParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*DisassembleWasmModuleParams) UnmarshalJSON

func (v *DisassembleWasmModuleParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type DisassembleWasmModuleReturns

type DisassembleWasmModuleReturns struct {
	StreamID            string                `json:"streamId,omitempty"`            // For large modules, return a stream from which additional chunks of disassembly can be read successively.
	TotalNumberOfLines  int64                 `json:"totalNumberOfLines,omitempty"`  // The total number of lines in the disassembly text.
	FunctionBodyOffsets []int64               `json:"functionBodyOffsets,omitempty"` // The offsets of all function bodies, in the format [start1, end1, start2, end2, ...] where all ends are exclusive.
	Chunk               *WasmDisassemblyChunk `json:"chunk,omitempty"`               // The first chunk of disassembly.
}

DisassembleWasmModuleReturns return values.

func (DisassembleWasmModuleReturns) MarshalEasyJSON

func (v DisassembleWasmModuleReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (DisassembleWasmModuleReturns) MarshalJSON

func (v DisassembleWasmModuleReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*DisassembleWasmModuleReturns) UnmarshalEasyJSON

func (v *DisassembleWasmModuleReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*DisassembleWasmModuleReturns) UnmarshalJSON

func (v *DisassembleWasmModuleReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EnableParams

type EnableParams struct {
	MaxScriptsCacheSize float64 `json:"maxScriptsCacheSize,omitempty"` // The maximum size in bytes of collected scripts (not referenced by other heap objects) the debugger can hold. Puts no limit if parameter is omitted.
}

EnableParams enables debugger for the given page. Clients should not assume that the debugging has been enabled until the result for this command is received.

func Enable

func Enable() *EnableParams

Enable enables debugger for the given page. Clients should not assume that the debugging has been enabled until the result for this command is received.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-enable

parameters:

func (*EnableParams) Do

func (p *EnableParams) Do(ctx context.Context) (debuggerID runtime.UniqueDebuggerID, err error)

Do executes Debugger.enable against the provided context.

returns:

debuggerID - Unique identifier of the debugger.

func (EnableParams) MarshalEasyJSON

func (v EnableParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EnableParams) MarshalJSON

func (v EnableParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EnableParams) UnmarshalEasyJSON

func (v *EnableParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EnableParams) UnmarshalJSON

func (v *EnableParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

func (EnableParams) WithMaxScriptsCacheSize

func (p EnableParams) WithMaxScriptsCacheSize(maxScriptsCacheSize float64) *EnableParams

WithMaxScriptsCacheSize the maximum size in bytes of collected scripts (not referenced by other heap objects) the debugger can hold. Puts no limit if parameter is omitted.

type EnableReturns

type EnableReturns struct {
	DebuggerID runtime.UniqueDebuggerID `json:"debuggerId,omitempty"` // Unique identifier of the debugger.
}

EnableReturns return values.

func (EnableReturns) MarshalEasyJSON

func (v EnableReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EnableReturns) MarshalJSON

func (v EnableReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EnableReturns) UnmarshalEasyJSON

func (v *EnableReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EnableReturns) UnmarshalJSON

func (v *EnableReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EvaluateOnCallFrameParams

type EvaluateOnCallFrameParams struct {
	CallFrameID           CallFrameID       `json:"callFrameId"`                     // Call frame identifier to evaluate on.
	Expression            string            `json:"expression"`                      // Expression to evaluate.
	ObjectGroup           string            `json:"objectGroup,omitempty"`           // String object group name to put result into (allows rapid releasing resulting object handles using releaseObjectGroup).
	IncludeCommandLineAPI bool              `json:"includeCommandLineAPI,omitempty"` // Specifies whether command line API should be available to the evaluated expression, defaults to false.
	Silent                bool              `json:"silent,omitempty"`                // In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides setPauseOnException state.
	ReturnByValue         bool              `json:"returnByValue,omitempty"`         // Whether the result is expected to be a JSON object that should be sent by value.
	GeneratePreview       bool              `json:"generatePreview,omitempty"`       // Whether preview should be generated for the result.
	ThrowOnSideEffect     bool              `json:"throwOnSideEffect,omitempty"`     // Whether to throw an exception if side effect cannot be ruled out during evaluation.
	Timeout               runtime.TimeDelta `json:"timeout,omitempty"`               // Terminate execution after timing out (number of milliseconds).
}

EvaluateOnCallFrameParams evaluates expression on a given call frame.

func EvaluateOnCallFrame

func EvaluateOnCallFrame(callFrameID CallFrameID, expression string) *EvaluateOnCallFrameParams

EvaluateOnCallFrame evaluates expression on a given call frame.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-evaluateOnCallFrame

parameters:

callFrameID - Call frame identifier to evaluate on.
expression - Expression to evaluate.

func (*EvaluateOnCallFrameParams) Do

func (p *EvaluateOnCallFrameParams) Do(ctx context.Context) (result *runtime.RemoteObject, exceptionDetails *runtime.ExceptionDetails, err error)

Do executes Debugger.evaluateOnCallFrame against the provided context.

returns:

result - Object wrapper for the evaluation result.
exceptionDetails - Exception details.

func (EvaluateOnCallFrameParams) MarshalEasyJSON

func (v EvaluateOnCallFrameParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EvaluateOnCallFrameParams) MarshalJSON

func (v EvaluateOnCallFrameParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EvaluateOnCallFrameParams) UnmarshalEasyJSON

func (v *EvaluateOnCallFrameParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EvaluateOnCallFrameParams) UnmarshalJSON

func (v *EvaluateOnCallFrameParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

func (EvaluateOnCallFrameParams) WithGeneratePreview

func (p EvaluateOnCallFrameParams) WithGeneratePreview(generatePreview bool) *EvaluateOnCallFrameParams

WithGeneratePreview whether preview should be generated for the result.

func (EvaluateOnCallFrameParams) WithIncludeCommandLineAPI

func (p EvaluateOnCallFrameParams) WithIncludeCommandLineAPI(includeCommandLineAPI bool) *EvaluateOnCallFrameParams

WithIncludeCommandLineAPI specifies whether command line API should be available to the evaluated expression, defaults to false.

func (EvaluateOnCallFrameParams) WithObjectGroup

func (p EvaluateOnCallFrameParams) WithObjectGroup(objectGroup string) *EvaluateOnCallFrameParams

WithObjectGroup string object group name to put result into (allows rapid releasing resulting object handles using releaseObjectGroup).

func (EvaluateOnCallFrameParams) WithReturnByValue

func (p EvaluateOnCallFrameParams) WithReturnByValue(returnByValue bool) *EvaluateOnCallFrameParams

WithReturnByValue whether the result is expected to be a JSON object that should be sent by value.

func (EvaluateOnCallFrameParams) WithSilent

WithSilent in silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides setPauseOnException state.

func (EvaluateOnCallFrameParams) WithThrowOnSideEffect

func (p EvaluateOnCallFrameParams) WithThrowOnSideEffect(throwOnSideEffect bool) *EvaluateOnCallFrameParams

WithThrowOnSideEffect whether to throw an exception if side effect cannot be ruled out during evaluation.

func (EvaluateOnCallFrameParams) WithTimeout

WithTimeout terminate execution after timing out (number of milliseconds).

type EvaluateOnCallFrameReturns

type EvaluateOnCallFrameReturns struct {
	Result           *runtime.RemoteObject     `json:"result,omitempty"`           // Object wrapper for the evaluation result.
	ExceptionDetails *runtime.ExceptionDetails `json:"exceptionDetails,omitempty"` // Exception details.
}

EvaluateOnCallFrameReturns return values.

func (EvaluateOnCallFrameReturns) MarshalEasyJSON

func (v EvaluateOnCallFrameReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EvaluateOnCallFrameReturns) MarshalJSON

func (v EvaluateOnCallFrameReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EvaluateOnCallFrameReturns) UnmarshalEasyJSON

func (v *EvaluateOnCallFrameReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EvaluateOnCallFrameReturns) UnmarshalJSON

func (v *EvaluateOnCallFrameReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventBreakpointResolved

type EventBreakpointResolved struct {
	BreakpointID BreakpointID `json:"breakpointId"` // Breakpoint unique identifier.
	Location     *Location    `json:"location"`     // Actual breakpoint location.
}

EventBreakpointResolved fired when breakpoint is resolved to an actual script and location.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#event-breakpointResolved

func (EventBreakpointResolved) MarshalEasyJSON

func (v EventBreakpointResolved) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventBreakpointResolved) MarshalJSON

func (v EventBreakpointResolved) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventBreakpointResolved) UnmarshalEasyJSON

func (v *EventBreakpointResolved) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventBreakpointResolved) UnmarshalJSON

func (v *EventBreakpointResolved) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventPaused

type EventPaused struct {
	CallFrames        []*CallFrame          `json:"callFrames"` // Call stack the virtual machine stopped on.
	Reason            PausedReason          `json:"reason"`     // Pause reason.
	Data              easyjson.RawMessage   `json:"data,omitempty"`
	HitBreakpoints    []string              `json:"hitBreakpoints,omitempty"`    // Hit breakpoints IDs
	AsyncStackTrace   *runtime.StackTrace   `json:"asyncStackTrace,omitempty"`   // Async stack trace, if any.
	AsyncStackTraceID *runtime.StackTraceID `json:"asyncStackTraceId,omitempty"` // Async stack trace, if any.
}

EventPaused fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#event-paused

func (EventPaused) MarshalEasyJSON

func (v EventPaused) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventPaused) MarshalJSON

func (v EventPaused) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventPaused) UnmarshalEasyJSON

func (v *EventPaused) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventPaused) UnmarshalJSON

func (v *EventPaused) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventResumed

type EventResumed struct{}

EventResumed fired when the virtual machine resumed execution.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#event-resumed

func (EventResumed) MarshalEasyJSON

func (v EventResumed) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventResumed) MarshalJSON

func (v EventResumed) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventResumed) UnmarshalEasyJSON

func (v *EventResumed) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventResumed) UnmarshalJSON

func (v *EventResumed) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventScriptFailedToParse

type EventScriptFailedToParse struct {
	ScriptID                runtime.ScriptID           `json:"scriptId"`           // Identifier of the script parsed.
	URL                     string                     `json:"url"`                // URL or name of the script parsed (if any).
	StartLine               int64                      `json:"startLine"`          // Line offset of the script within the resource with given URL (for script tags).
	StartColumn             int64                      `json:"startColumn"`        // Column offset of the script within the resource with given URL.
	EndLine                 int64                      `json:"endLine"`            // Last line of the script.
	EndColumn               int64                      `json:"endColumn"`          // Length of the last line of the script.
	ExecutionContextID      runtime.ExecutionContextID `json:"executionContextId"` // Specifies script creation context.
	Hash                    string                     `json:"hash"`               // Content hash of the script, SHA-256.
	ExecutionContextAuxData easyjson.RawMessage        `json:"executionContextAuxData,omitempty"`
	SourceMapURL            string                     `json:"sourceMapURL,omitempty"`   // URL of source map associated with script (if any).
	HasSourceURL            bool                       `json:"hasSourceURL,omitempty"`   // True, if this script has sourceURL.
	IsModule                bool                       `json:"isModule,omitempty"`       // True, if this script is ES6 module.
	Length                  int64                      `json:"length,omitempty"`         // This script length.
	StackTrace              *runtime.StackTrace        `json:"stackTrace,omitempty"`     // JavaScript top stack frame of where the script parsed event was triggered if available.
	CodeOffset              int64                      `json:"codeOffset,omitempty"`     // If the scriptLanguage is WebAssembly, the code section offset in the module.
	ScriptLanguage          ScriptLanguage             `json:"scriptLanguage,omitempty"` // The language of the script.
	EmbedderName            string                     `json:"embedderName,omitempty"`   // The name the embedder supplied for this script.
}

EventScriptFailedToParse fired when virtual machine fails to parse the script.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#event-scriptFailedToParse

func (EventScriptFailedToParse) MarshalEasyJSON

func (v EventScriptFailedToParse) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventScriptFailedToParse) MarshalJSON

func (v EventScriptFailedToParse) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventScriptFailedToParse) UnmarshalEasyJSON

func (v *EventScriptFailedToParse) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventScriptFailedToParse) UnmarshalJSON

func (v *EventScriptFailedToParse) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventScriptParsed

type EventScriptParsed struct {
	ScriptID                runtime.ScriptID           `json:"scriptId"`           // Identifier of the script parsed.
	URL                     string                     `json:"url"`                // URL or name of the script parsed (if any).
	StartLine               int64                      `json:"startLine"`          // Line offset of the script within the resource with given URL (for script tags).
	StartColumn             int64                      `json:"startColumn"`        // Column offset of the script within the resource with given URL.
	EndLine                 int64                      `json:"endLine"`            // Last line of the script.
	EndColumn               int64                      `json:"endColumn"`          // Length of the last line of the script.
	ExecutionContextID      runtime.ExecutionContextID `json:"executionContextId"` // Specifies script creation context.
	Hash                    string                     `json:"hash"`               // Content hash of the script, SHA-256.
	ExecutionContextAuxData easyjson.RawMessage        `json:"executionContextAuxData,omitempty"`
	IsLiveEdit              bool                       `json:"isLiveEdit,omitempty"`     // True, if this script is generated as a result of the live edit operation.
	SourceMapURL            string                     `json:"sourceMapURL,omitempty"`   // URL of source map associated with script (if any).
	HasSourceURL            bool                       `json:"hasSourceURL,omitempty"`   // True, if this script has sourceURL.
	IsModule                bool                       `json:"isModule,omitempty"`       // True, if this script is ES6 module.
	Length                  int64                      `json:"length,omitempty"`         // This script length.
	StackTrace              *runtime.StackTrace        `json:"stackTrace,omitempty"`     // JavaScript top stack frame of where the script parsed event was triggered if available.
	CodeOffset              int64                      `json:"codeOffset,omitempty"`     // If the scriptLanguage is WebAssembly, the code section offset in the module.
	ScriptLanguage          ScriptLanguage             `json:"scriptLanguage,omitempty"` // The language of the script.
	DebugSymbols            *DebugSymbols              `json:"debugSymbols,omitempty"`   // If the scriptLanguage is WebASsembly, the source of debug symbols for the module.
	EmbedderName            string                     `json:"embedderName,omitempty"`   // The name the embedder supplied for this script.
}

EventScriptParsed fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#event-scriptParsed

func (EventScriptParsed) MarshalEasyJSON

func (v EventScriptParsed) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventScriptParsed) MarshalJSON

func (v EventScriptParsed) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventScriptParsed) UnmarshalEasyJSON

func (v *EventScriptParsed) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventScriptParsed) UnmarshalJSON

func (v *EventScriptParsed) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ExceptionsState

type ExceptionsState string

ExceptionsState pause on exceptions mode.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-setPauseOnExceptions

const (
	ExceptionsStateNone     ExceptionsState = "none"
	ExceptionsStateCaught   ExceptionsState = "caught"
	ExceptionsStateUncaught ExceptionsState = "uncaught"
	ExceptionsStateAll      ExceptionsState = "all"
)

ExceptionsState values.

func (ExceptionsState) MarshalEasyJSON

func (t ExceptionsState) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (ExceptionsState) MarshalJSON

func (t ExceptionsState) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (ExceptionsState) String

func (t ExceptionsState) String() string

String returns the ExceptionsState as string value.

func (*ExceptionsState) UnmarshalEasyJSON

func (t *ExceptionsState) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*ExceptionsState) UnmarshalJSON

func (t *ExceptionsState) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type GetPossibleBreakpointsParams

type GetPossibleBreakpointsParams struct {
	Start              *Location `json:"start"`                        // Start of range to search possible breakpoint locations in.
	End                *Location `json:"end,omitempty"`                // End of range to search possible breakpoint locations in (excluding). When not specified, end of scripts is used as end of range.
	RestrictToFunction bool      `json:"restrictToFunction,omitempty"` // Only consider locations which are in the same (non-nested) function as start.
}

GetPossibleBreakpointsParams returns possible locations for breakpoint. scriptId in start and end range locations should be the same.

func GetPossibleBreakpoints

func GetPossibleBreakpoints(start *Location) *GetPossibleBreakpointsParams

GetPossibleBreakpoints returns possible locations for breakpoint. scriptId in start and end range locations should be the same.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-getPossibleBreakpoints

parameters:

start - Start of range to search possible breakpoint locations in.

func (*GetPossibleBreakpointsParams) Do

func (p *GetPossibleBreakpointsParams) Do(ctx context.Context) (locations []*BreakLocation, err error)

Do executes Debugger.getPossibleBreakpoints against the provided context.

returns:

locations - List of the possible breakpoint locations.

func (GetPossibleBreakpointsParams) MarshalEasyJSON

func (v GetPossibleBreakpointsParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GetPossibleBreakpointsParams) MarshalJSON

func (v GetPossibleBreakpointsParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GetPossibleBreakpointsParams) UnmarshalEasyJSON

func (v *GetPossibleBreakpointsParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GetPossibleBreakpointsParams) UnmarshalJSON

func (v *GetPossibleBreakpointsParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

func (GetPossibleBreakpointsParams) WithEnd

WithEnd end of range to search possible breakpoint locations in (excluding). When not specified, end of scripts is used as end of range.

func (GetPossibleBreakpointsParams) WithRestrictToFunction

func (p GetPossibleBreakpointsParams) WithRestrictToFunction(restrictToFunction bool) *GetPossibleBreakpointsParams

WithRestrictToFunction only consider locations which are in the same (non-nested) function as start.

type GetPossibleBreakpointsReturns

type GetPossibleBreakpointsReturns struct {
	Locations []*BreakLocation `json:"locations,omitempty"` // List of the possible breakpoint locations.
}

GetPossibleBreakpointsReturns return values.

func (GetPossibleBreakpointsReturns) MarshalEasyJSON

func (v GetPossibleBreakpointsReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GetPossibleBreakpointsReturns) MarshalJSON

func (v GetPossibleBreakpointsReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GetPossibleBreakpointsReturns) UnmarshalEasyJSON

func (v *GetPossibleBreakpointsReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GetPossibleBreakpointsReturns) UnmarshalJSON

func (v *GetPossibleBreakpointsReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GetScriptSourceParams

type GetScriptSourceParams struct {
	ScriptID runtime.ScriptID `json:"scriptId"` // Id of the script to get source for.
}

GetScriptSourceParams returns source for the script with given id.

func GetScriptSource

func GetScriptSource(scriptID runtime.ScriptID) *GetScriptSourceParams

GetScriptSource returns source for the script with given id.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-getScriptSource

parameters:

scriptID - Id of the script to get source for.

func (*GetScriptSourceParams) Do

func (p *GetScriptSourceParams) Do(ctx context.Context) (scriptSource string, bytecode []byte, err error)

Do executes Debugger.getScriptSource against the provided context.

returns:

scriptSource - Script source (empty in case of Wasm bytecode).
bytecode - Wasm bytecode.

func (GetScriptSourceParams) MarshalEasyJSON

func (v GetScriptSourceParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GetScriptSourceParams) MarshalJSON

func (v GetScriptSourceParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GetScriptSourceParams) UnmarshalEasyJSON

func (v *GetScriptSourceParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GetScriptSourceParams) UnmarshalJSON

func (v *GetScriptSourceParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GetScriptSourceReturns

type GetScriptSourceReturns struct {
	ScriptSource string `json:"scriptSource,omitempty"` // Script source (empty in case of Wasm bytecode).
	Bytecode     string `json:"bytecode,omitempty"`     // Wasm bytecode.
}

GetScriptSourceReturns return values.

func (GetScriptSourceReturns) MarshalEasyJSON

func (v GetScriptSourceReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GetScriptSourceReturns) MarshalJSON

func (v GetScriptSourceReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GetScriptSourceReturns) UnmarshalEasyJSON

func (v *GetScriptSourceReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GetScriptSourceReturns) UnmarshalJSON

func (v *GetScriptSourceReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GetStackTraceParams

type GetStackTraceParams struct {
	StackTraceID *runtime.StackTraceID `json:"stackTraceId"`
}

GetStackTraceParams returns stack trace with given stackTraceId.

func GetStackTrace

func GetStackTrace(stackTraceID *runtime.StackTraceID) *GetStackTraceParams

GetStackTrace returns stack trace with given stackTraceId.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-getStackTrace

parameters:

stackTraceID

func (*GetStackTraceParams) Do

func (p *GetStackTraceParams) Do(ctx context.Context) (stackTrace *runtime.StackTrace, err error)

Do executes Debugger.getStackTrace against the provided context.

returns:

stackTrace

func (GetStackTraceParams) MarshalEasyJSON

func (v GetStackTraceParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GetStackTraceParams) MarshalJSON

func (v GetStackTraceParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GetStackTraceParams) UnmarshalEasyJSON

func (v *GetStackTraceParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GetStackTraceParams) UnmarshalJSON

func (v *GetStackTraceParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GetStackTraceReturns

type GetStackTraceReturns struct {
	StackTrace *runtime.StackTrace `json:"stackTrace,omitempty"`
}

GetStackTraceReturns return values.

func (GetStackTraceReturns) MarshalEasyJSON

func (v GetStackTraceReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GetStackTraceReturns) MarshalJSON

func (v GetStackTraceReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GetStackTraceReturns) UnmarshalEasyJSON

func (v *GetStackTraceReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GetStackTraceReturns) UnmarshalJSON

func (v *GetStackTraceReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Location

type Location struct {
	ScriptID     runtime.ScriptID `json:"scriptId"`               // Script identifier as reported in the Debugger.scriptParsed.
	LineNumber   int64            `json:"lineNumber"`             // Line number in the script (0-based).
	ColumnNumber int64            `json:"columnNumber,omitempty"` // Column number in the script (0-based).
}

Location location in the source code.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#type-Location

func (Location) MarshalEasyJSON

func (v Location) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Location) MarshalJSON

func (v Location) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Location) UnmarshalEasyJSON

func (v *Location) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Location) UnmarshalJSON

func (v *Location) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type LocationRange

type LocationRange struct {
	ScriptID runtime.ScriptID `json:"scriptId"`
	Start    *ScriptPosition  `json:"start"`
	End      *ScriptPosition  `json:"end"`
}

LocationRange location range within one script.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#type-LocationRange

func (LocationRange) MarshalEasyJSON

func (v LocationRange) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (LocationRange) MarshalJSON

func (v LocationRange) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*LocationRange) UnmarshalEasyJSON

func (v *LocationRange) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*LocationRange) UnmarshalJSON

func (v *LocationRange) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type NextWasmDisassemblyChunkParams

type NextWasmDisassemblyChunkParams struct {
	StreamID string `json:"streamId"`
}

NextWasmDisassemblyChunkParams disassemble the next chunk of lines for the module corresponding to the stream. If disassembly is complete, this API will invalidate the streamId and return an empty chunk. Any subsequent calls for the now invalid stream will return errors.

func NextWasmDisassemblyChunk

func NextWasmDisassemblyChunk(streamID string) *NextWasmDisassemblyChunkParams

NextWasmDisassemblyChunk disassemble the next chunk of lines for the module corresponding to the stream. If disassembly is complete, this API will invalidate the streamId and return an empty chunk. Any subsequent calls for the now invalid stream will return errors.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-nextWasmDisassemblyChunk

parameters:

streamID

func (*NextWasmDisassemblyChunkParams) Do

Do executes Debugger.nextWasmDisassemblyChunk against the provided context.

returns:

chunk - The next chunk of disassembly.

func (NextWasmDisassemblyChunkParams) MarshalEasyJSON

func (v NextWasmDisassemblyChunkParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (NextWasmDisassemblyChunkParams) MarshalJSON

func (v NextWasmDisassemblyChunkParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*NextWasmDisassemblyChunkParams) UnmarshalEasyJSON

func (v *NextWasmDisassemblyChunkParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*NextWasmDisassemblyChunkParams) UnmarshalJSON

func (v *NextWasmDisassemblyChunkParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type NextWasmDisassemblyChunkReturns

type NextWasmDisassemblyChunkReturns struct {
	Chunk *WasmDisassemblyChunk `json:"chunk,omitempty"` // The next chunk of disassembly.
}

NextWasmDisassemblyChunkReturns return values.

func (NextWasmDisassemblyChunkReturns) MarshalEasyJSON

func (v NextWasmDisassemblyChunkReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (NextWasmDisassemblyChunkReturns) MarshalJSON

func (v NextWasmDisassemblyChunkReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*NextWasmDisassemblyChunkReturns) UnmarshalEasyJSON

func (v *NextWasmDisassemblyChunkReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*NextWasmDisassemblyChunkReturns) UnmarshalJSON

func (v *NextWasmDisassemblyChunkReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PauseParams

type PauseParams struct{}

PauseParams stops on the next JavaScript statement.

func Pause

func Pause() *PauseParams

Pause stops on the next JavaScript statement.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-pause

func (*PauseParams) Do

func (p *PauseParams) Do(ctx context.Context) (err error)

Do executes Debugger.pause against the provided context.

func (PauseParams) MarshalEasyJSON

func (v PauseParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PauseParams) MarshalJSON

func (v PauseParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PauseParams) UnmarshalEasyJSON

func (v *PauseParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PauseParams) UnmarshalJSON

func (v *PauseParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PausedReason

type PausedReason string

PausedReason pause reason.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#event-paused

const (
	PausedReasonAmbiguous        PausedReason = "ambiguous"
	PausedReasonAssert           PausedReason = "assert"
	PausedReasonCSPViolation     PausedReason = "CSPViolation"
	PausedReasonDebugCommand     PausedReason = "debugCommand"
	PausedReasonDOM              PausedReason = "DOM"
	PausedReasonEventListener    PausedReason = "EventListener"
	PausedReasonException        PausedReason = "exception"
	PausedReasonInstrumentation  PausedReason = "instrumentation"
	PausedReasonOOM              PausedReason = "OOM"
	PausedReasonOther            PausedReason = "other"
	PausedReasonPromiseRejection PausedReason = "promiseRejection"
	PausedReasonXHR              PausedReason = "XHR"
	PausedReasonStep             PausedReason = "step"
)

PausedReason values.

func (PausedReason) MarshalEasyJSON

func (t PausedReason) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (PausedReason) MarshalJSON

func (t PausedReason) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (PausedReason) String

func (t PausedReason) String() string

String returns the PausedReason as string value.

func (*PausedReason) UnmarshalEasyJSON

func (t *PausedReason) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*PausedReason) UnmarshalJSON

func (t *PausedReason) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type RemoveBreakpointParams

type RemoveBreakpointParams struct {
	BreakpointID BreakpointID `json:"breakpointId"`
}

RemoveBreakpointParams removes JavaScript breakpoint.

func RemoveBreakpoint

func RemoveBreakpoint(breakpointID BreakpointID) *RemoveBreakpointParams

RemoveBreakpoint removes JavaScript breakpoint.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-removeBreakpoint

parameters:

breakpointID

func (*RemoveBreakpointParams) Do

func (p *RemoveBreakpointParams) Do(ctx context.Context) (err error)

Do executes Debugger.removeBreakpoint against the provided context.

func (RemoveBreakpointParams) MarshalEasyJSON

func (v RemoveBreakpointParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (RemoveBreakpointParams) MarshalJSON

func (v RemoveBreakpointParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*RemoveBreakpointParams) UnmarshalEasyJSON

func (v *RemoveBreakpointParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*RemoveBreakpointParams) UnmarshalJSON

func (v *RemoveBreakpointParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type RestartFrameMode

type RestartFrameMode string

RestartFrameMode the mode parameter must be present and set to 'StepInto', otherwise restartFrame will error out.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-restartFrame

const (
	RestartFrameModeStepInto RestartFrameMode = "StepInto"
)

RestartFrameMode values.

func (RestartFrameMode) MarshalEasyJSON

func (t RestartFrameMode) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (RestartFrameMode) MarshalJSON

func (t RestartFrameMode) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (RestartFrameMode) String

func (t RestartFrameMode) String() string

String returns the RestartFrameMode as string value.

func (*RestartFrameMode) UnmarshalEasyJSON

func (t *RestartFrameMode) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*RestartFrameMode) UnmarshalJSON

func (t *RestartFrameMode) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type RestartFrameParams

type RestartFrameParams struct {
	CallFrameID CallFrameID      `json:"callFrameId"`    // Call frame identifier to evaluate on.
	Mode        RestartFrameMode `json:"mode,omitempty"` // The mode parameter must be present and set to 'StepInto', otherwise restartFrame will error out.
}

RestartFrameParams restarts particular call frame from the beginning. The old, deprecated behavior of restartFrame is to stay paused and allow further CDP commands after a restart was scheduled. This can cause problems with restarting, so we now continue execution immediately after it has been scheduled until we reach the beginning of the restarted frame. To stay back-wards compatible, restartFrame now expects a mode parameter to be present. If the mode parameter is missing, restartFrame errors out. The various return values are deprecated and callFrames is always empty. Use the call frames from the Debugger#paused events instead, that fires once V8 pauses at the beginning of the restarted function.

func RestartFrame

func RestartFrame(callFrameID CallFrameID) *RestartFrameParams

RestartFrame restarts particular call frame from the beginning. The old, deprecated behavior of restartFrame is to stay paused and allow further CDP commands after a restart was scheduled. This can cause problems with restarting, so we now continue execution immediately after it has been scheduled until we reach the beginning of the restarted frame. To stay back-wards compatible, restartFrame now expects a mode parameter to be present. If the mode parameter is missing, restartFrame errors out. The various return values are deprecated and callFrames is always empty. Use the call frames from the Debugger#paused events instead, that fires once V8 pauses at the beginning of the restarted function.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-restartFrame

parameters:

callFrameID - Call frame identifier to evaluate on.

func (*RestartFrameParams) Do

func (p *RestartFrameParams) Do(ctx context.Context) (err error)

Do executes Debugger.restartFrame against the provided context.

func (RestartFrameParams) MarshalEasyJSON

func (v RestartFrameParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (RestartFrameParams) MarshalJSON

func (v RestartFrameParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*RestartFrameParams) UnmarshalEasyJSON

func (v *RestartFrameParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*RestartFrameParams) UnmarshalJSON

func (v *RestartFrameParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

func (RestartFrameParams) WithMode

WithMode the mode parameter must be present and set to 'StepInto', otherwise restartFrame will error out.

type ResumeParams

type ResumeParams struct {
	TerminateOnResume bool `json:"terminateOnResume,omitempty"` // Set to true to terminate execution upon resuming execution. In contrast to Runtime.terminateExecution, this will allows to execute further JavaScript (i.e. via evaluation) until execution of the paused code is actually resumed, at which point termination is triggered. If execution is currently not paused, this parameter has no effect.
}

ResumeParams resumes JavaScript execution.

func Resume

func Resume() *ResumeParams

Resume resumes JavaScript execution.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-resume

parameters:

func (*ResumeParams) Do

func (p *ResumeParams) Do(ctx context.Context) (err error)

Do executes Debugger.resume against the provided context.

func (ResumeParams) MarshalEasyJSON

func (v ResumeParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ResumeParams) MarshalJSON

func (v ResumeParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ResumeParams) UnmarshalEasyJSON

func (v *ResumeParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ResumeParams) UnmarshalJSON

func (v *ResumeParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

func (ResumeParams) WithTerminateOnResume

func (p ResumeParams) WithTerminateOnResume(terminateOnResume bool) *ResumeParams

WithTerminateOnResume set to true to terminate execution upon resuming execution. In contrast to Runtime.terminateExecution, this will allows to execute further JavaScript (i.e. via evaluation) until execution of the paused code is actually resumed, at which point termination is triggered. If execution is currently not paused, this parameter has no effect.

type Scope

type Scope struct {
	Type          ScopeType             `json:"type"`   // Scope type.
	Object        *runtime.RemoteObject `json:"object"` // Object representing the scope. For global and with scopes it represents the actual object; for the rest of the scopes, it is artificial transient object enumerating scope variables as its properties.
	Name          string                `json:"name,omitempty"`
	StartLocation *Location             `json:"startLocation,omitempty"` // Location in the source code where scope starts
	EndLocation   *Location             `json:"endLocation,omitempty"`   // Location in the source code where scope ends
}

Scope scope description.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#type-Scope

func (Scope) MarshalEasyJSON

func (v Scope) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Scope) MarshalJSON

func (v Scope) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Scope) UnmarshalEasyJSON

func (v *Scope) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Scope) UnmarshalJSON

func (v *Scope) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ScopeType

type ScopeType string

ScopeType scope type.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#type-Scope

const (
	ScopeTypeGlobal              ScopeType = "global"
	ScopeTypeLocal               ScopeType = "local"
	ScopeTypeWith                ScopeType = "with"
	ScopeTypeClosure             ScopeType = "closure"
	ScopeTypeCatch               ScopeType = "catch"
	ScopeTypeBlock               ScopeType = "block"
	ScopeTypeScript              ScopeType = "script"
	ScopeTypeEval                ScopeType = "eval"
	ScopeTypeModule              ScopeType = "module"
	ScopeTypeWasmExpressionStack ScopeType = "wasm-expression-stack"
)

ScopeType values.

func (ScopeType) MarshalEasyJSON

func (t ScopeType) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (ScopeType) MarshalJSON

func (t ScopeType) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (ScopeType) String

func (t ScopeType) String() string

String returns the ScopeType as string value.

func (*ScopeType) UnmarshalEasyJSON

func (t *ScopeType) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*ScopeType) UnmarshalJSON

func (t *ScopeType) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type ScriptLanguage

type ScriptLanguage string

ScriptLanguage enum of possible script languages.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#type-ScriptLanguage

const (
	ScriptLanguageJavaScript  ScriptLanguage = "JavaScript"
	ScriptLanguageWebAssembly ScriptLanguage = "WebAssembly"
)

ScriptLanguage values.

func (ScriptLanguage) MarshalEasyJSON

func (t ScriptLanguage) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (ScriptLanguage) MarshalJSON

func (t ScriptLanguage) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (ScriptLanguage) String

func (t ScriptLanguage) String() string

String returns the ScriptLanguage as string value.

func (*ScriptLanguage) UnmarshalEasyJSON

func (t *ScriptLanguage) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*ScriptLanguage) UnmarshalJSON

func (t *ScriptLanguage) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type ScriptPosition

type ScriptPosition struct {
	LineNumber   int64 `json:"lineNumber"`
	ColumnNumber int64 `json:"columnNumber"`
}

ScriptPosition location in the source code.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#type-ScriptPosition

func (ScriptPosition) MarshalEasyJSON

func (v ScriptPosition) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ScriptPosition) MarshalJSON

func (v ScriptPosition) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ScriptPosition) UnmarshalEasyJSON

func (v *ScriptPosition) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ScriptPosition) UnmarshalJSON

func (v *ScriptPosition) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SearchInContentParams

type SearchInContentParams struct {
	ScriptID      runtime.ScriptID `json:"scriptId"`                // Id of the script to search in.
	Query         string           `json:"query"`                   // String to search for.
	CaseSensitive bool             `json:"caseSensitive,omitempty"` // If true, search is case sensitive.
	IsRegex       bool             `json:"isRegex,omitempty"`       // If true, treats string parameter as regex.
}

SearchInContentParams searches for given string in script content.

func SearchInContent

func SearchInContent(scriptID runtime.ScriptID, query string) *SearchInContentParams

SearchInContent searches for given string in script content.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-searchInContent

parameters:

scriptID - Id of the script to search in.
query - String to search for.

func (*SearchInContentParams) Do

func (p *SearchInContentParams) Do(ctx context.Context) (result []*SearchMatch, err error)

Do executes Debugger.searchInContent against the provided context.

returns:

result - List of search matches.

func (SearchInContentParams) MarshalEasyJSON

func (v SearchInContentParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SearchInContentParams) MarshalJSON

func (v SearchInContentParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SearchInContentParams) UnmarshalEasyJSON

func (v *SearchInContentParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SearchInContentParams) UnmarshalJSON

func (v *SearchInContentParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

func (SearchInContentParams) WithCaseSensitive

func (p SearchInContentParams) WithCaseSensitive(caseSensitive bool) *SearchInContentParams

WithCaseSensitive if true, search is case sensitive.

func (SearchInContentParams) WithIsRegex

func (p SearchInContentParams) WithIsRegex(isRegex bool) *SearchInContentParams

WithIsRegex if true, treats string parameter as regex.

type SearchInContentReturns

type SearchInContentReturns struct {
	Result []*SearchMatch `json:"result,omitempty"` // List of search matches.
}

SearchInContentReturns return values.

func (SearchInContentReturns) MarshalEasyJSON

func (v SearchInContentReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SearchInContentReturns) MarshalJSON

func (v SearchInContentReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SearchInContentReturns) UnmarshalEasyJSON

func (v *SearchInContentReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SearchInContentReturns) UnmarshalJSON

func (v *SearchInContentReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SearchMatch

type SearchMatch struct {
	LineNumber  float64 `json:"lineNumber"`  // Line number in resource content.
	LineContent string  `json:"lineContent"` // Line with match content.
}

SearchMatch search match for resource.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#type-SearchMatch

func (SearchMatch) MarshalEasyJSON

func (v SearchMatch) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SearchMatch) MarshalJSON

func (v SearchMatch) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SearchMatch) UnmarshalEasyJSON

func (v *SearchMatch) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SearchMatch) UnmarshalJSON

func (v *SearchMatch) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetAsyncCallStackDepthParams

type SetAsyncCallStackDepthParams struct {
	MaxDepth int64 `json:"maxDepth"` // Maximum depth of async call stacks. Setting to 0 will effectively disable collecting async call stacks (default).
}

SetAsyncCallStackDepthParams enables or disables async call stacks tracking.

func SetAsyncCallStackDepth

func SetAsyncCallStackDepth(maxDepth int64) *SetAsyncCallStackDepthParams

SetAsyncCallStackDepth enables or disables async call stacks tracking.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-setAsyncCallStackDepth

parameters:

maxDepth - Maximum depth of async call stacks. Setting to 0 will effectively disable collecting async call stacks (default).

func (*SetAsyncCallStackDepthParams) Do

Do executes Debugger.setAsyncCallStackDepth against the provided context.

func (SetAsyncCallStackDepthParams) MarshalEasyJSON

func (v SetAsyncCallStackDepthParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetAsyncCallStackDepthParams) MarshalJSON

func (v SetAsyncCallStackDepthParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetAsyncCallStackDepthParams) UnmarshalEasyJSON

func (v *SetAsyncCallStackDepthParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetAsyncCallStackDepthParams) UnmarshalJSON

func (v *SetAsyncCallStackDepthParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetBlackboxPatternsParams

type SetBlackboxPatternsParams struct {
	Patterns []string `json:"patterns"` // Array of regexps that will be used to check script url for blackbox state.
}

SetBlackboxPatternsParams replace previous blackbox patterns with passed ones. Forces backend to skip stepping/pausing in scripts with url matching one of the patterns. VM will try to leave blackboxed script by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.

func SetBlackboxPatterns

func SetBlackboxPatterns(patterns []string) *SetBlackboxPatternsParams

SetBlackboxPatterns replace previous blackbox patterns with passed ones. Forces backend to skip stepping/pausing in scripts with url matching one of the patterns. VM will try to leave blackboxed script by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-setBlackboxPatterns

parameters:

patterns - Array of regexps that will be used to check script url for blackbox state.

func (*SetBlackboxPatternsParams) Do

Do executes Debugger.setBlackboxPatterns against the provided context.

func (SetBlackboxPatternsParams) MarshalEasyJSON

func (v SetBlackboxPatternsParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetBlackboxPatternsParams) MarshalJSON

func (v SetBlackboxPatternsParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetBlackboxPatternsParams) UnmarshalEasyJSON

func (v *SetBlackboxPatternsParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetBlackboxPatternsParams) UnmarshalJSON

func (v *SetBlackboxPatternsParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetBlackboxedRangesParams

type SetBlackboxedRangesParams struct {
	ScriptID  runtime.ScriptID  `json:"scriptId"` // Id of the script.
	Positions []*ScriptPosition `json:"positions"`
}

SetBlackboxedRangesParams makes backend skip steps in the script in blackboxed ranges. VM will try leave blacklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful. Positions array contains positions where blackbox state is changed. First interval isn't blackboxed. Array should be sorted.

func SetBlackboxedRanges

func SetBlackboxedRanges(scriptID runtime.ScriptID, positions []*ScriptPosition) *SetBlackboxedRangesParams

SetBlackboxedRanges makes backend skip steps in the script in blackboxed ranges. VM will try leave blacklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful. Positions array contains positions where blackbox state is changed. First interval isn't blackboxed. Array should be sorted.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-setBlackboxedRanges

parameters:

scriptID - Id of the script.
positions

func (*SetBlackboxedRangesParams) Do

Do executes Debugger.setBlackboxedRanges against the provided context.

func (SetBlackboxedRangesParams) MarshalEasyJSON

func (v SetBlackboxedRangesParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetBlackboxedRangesParams) MarshalJSON

func (v SetBlackboxedRangesParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetBlackboxedRangesParams) UnmarshalEasyJSON

func (v *SetBlackboxedRangesParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetBlackboxedRangesParams) UnmarshalJSON

func (v *SetBlackboxedRangesParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetBreakpointByURLParams

type SetBreakpointByURLParams struct {
	LineNumber   int64  `json:"lineNumber"`             // Line number to set breakpoint at.
	URL          string `json:"url,omitempty"`          // URL of the resources to set breakpoint on.
	URLRegex     string `json:"urlRegex,omitempty"`     // Regex pattern for the URLs of the resources to set breakpoints on. Either url or urlRegex must be specified.
	ScriptHash   string `json:"scriptHash,omitempty"`   // Script hash of the resources to set breakpoint on.
	ColumnNumber int64  `json:"columnNumber,omitempty"` // Offset in the line to set breakpoint at.
	Condition    string `json:"condition,omitempty"`    // Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.
}

SetBreakpointByURLParams sets JavaScript breakpoint at given location specified either by URL or URL regex. Once this command is issued, all existing parsed scripts will have breakpoints resolved and returned in locations property. Further matching script parsing will result in subsequent breakpointResolved events issued. This logical breakpoint will survive page reloads.

func SetBreakpointByURL

func SetBreakpointByURL(lineNumber int64) *SetBreakpointByURLParams

SetBreakpointByURL sets JavaScript breakpoint at given location specified either by URL or URL regex. Once this command is issued, all existing parsed scripts will have breakpoints resolved and returned in locations property. Further matching script parsing will result in subsequent breakpointResolved events issued. This logical breakpoint will survive page reloads.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-setBreakpointByUrl

parameters:

lineNumber - Line number to set breakpoint at.

func (*SetBreakpointByURLParams) Do

func (p *SetBreakpointByURLParams) Do(ctx context.Context) (breakpointID BreakpointID, locations []*Location, err error)

Do executes Debugger.setBreakpointByUrl against the provided context.

returns:

breakpointID - Id of the created breakpoint for further reference.
locations - List of the locations this breakpoint resolved into upon addition.

func (SetBreakpointByURLParams) MarshalEasyJSON

func (v SetBreakpointByURLParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetBreakpointByURLParams) MarshalJSON

func (v SetBreakpointByURLParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetBreakpointByURLParams) UnmarshalEasyJSON

func (v *SetBreakpointByURLParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetBreakpointByURLParams) UnmarshalJSON

func (v *SetBreakpointByURLParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

func (SetBreakpointByURLParams) WithColumnNumber

func (p SetBreakpointByURLParams) WithColumnNumber(columnNumber int64) *SetBreakpointByURLParams

WithColumnNumber offset in the line to set breakpoint at.

func (SetBreakpointByURLParams) WithCondition

func (p SetBreakpointByURLParams) WithCondition(condition string) *SetBreakpointByURLParams

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

func (SetBreakpointByURLParams) WithScriptHash

func (p SetBreakpointByURLParams) WithScriptHash(scriptHash string) *SetBreakpointByURLParams

WithScriptHash script hash of the resources to set breakpoint on.

func (SetBreakpointByURLParams) WithURL

WithURL URL of the resources to set breakpoint on.

func (SetBreakpointByURLParams) WithURLRegex

func (p SetBreakpointByURLParams) WithURLRegex(urlRegex string) *SetBreakpointByURLParams

WithURLRegex regex pattern for the URLs of the resources to set breakpoints on. Either url or urlRegex must be specified.

type SetBreakpointByURLReturns

type SetBreakpointByURLReturns struct {
	BreakpointID BreakpointID `json:"breakpointId,omitempty"` // Id of the created breakpoint for further reference.
	Locations    []*Location  `json:"locations,omitempty"`    // List of the locations this breakpoint resolved into upon addition.
}

SetBreakpointByURLReturns return values.

func (SetBreakpointByURLReturns) MarshalEasyJSON

func (v SetBreakpointByURLReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetBreakpointByURLReturns) MarshalJSON

func (v SetBreakpointByURLReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetBreakpointByURLReturns) UnmarshalEasyJSON

func (v *SetBreakpointByURLReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetBreakpointByURLReturns) UnmarshalJSON

func (v *SetBreakpointByURLReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetBreakpointOnFunctionCallParams

type SetBreakpointOnFunctionCallParams struct {
	ObjectID  runtime.RemoteObjectID `json:"objectId"`            // Function object id.
	Condition string                 `json:"condition,omitempty"` // Expression to use as a breakpoint condition. When specified, debugger will stop on the breakpoint if this expression evaluates to true.
}

SetBreakpointOnFunctionCallParams 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.

func SetBreakpointOnFunctionCall

func SetBreakpointOnFunctionCall(objectID runtime.RemoteObjectID) *SetBreakpointOnFunctionCallParams

SetBreakpointOnFunctionCall 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.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-setBreakpointOnFunctionCall

parameters:

objectID - Function object id.

func (*SetBreakpointOnFunctionCallParams) Do

func (p *SetBreakpointOnFunctionCallParams) Do(ctx context.Context) (breakpointID BreakpointID, err error)

Do executes Debugger.setBreakpointOnFunctionCall against the provided context.

returns:

breakpointID - Id of the created breakpoint for further reference.

func (SetBreakpointOnFunctionCallParams) MarshalEasyJSON

func (v SetBreakpointOnFunctionCallParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetBreakpointOnFunctionCallParams) MarshalJSON

func (v SetBreakpointOnFunctionCallParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetBreakpointOnFunctionCallParams) UnmarshalEasyJSON

func (v *SetBreakpointOnFunctionCallParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetBreakpointOnFunctionCallParams) UnmarshalJSON

func (v *SetBreakpointOnFunctionCallParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

func (SetBreakpointOnFunctionCallParams) WithCondition

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

type SetBreakpointOnFunctionCallReturns

type SetBreakpointOnFunctionCallReturns struct {
	BreakpointID BreakpointID `json:"breakpointId,omitempty"` // Id of the created breakpoint for further reference.
}

SetBreakpointOnFunctionCallReturns return values.

func (SetBreakpointOnFunctionCallReturns) MarshalEasyJSON

func (v SetBreakpointOnFunctionCallReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetBreakpointOnFunctionCallReturns) MarshalJSON

func (v SetBreakpointOnFunctionCallReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetBreakpointOnFunctionCallReturns) UnmarshalEasyJSON

func (v *SetBreakpointOnFunctionCallReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetBreakpointOnFunctionCallReturns) UnmarshalJSON

func (v *SetBreakpointOnFunctionCallReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetBreakpointParams

type SetBreakpointParams struct {
	Location  *Location `json:"location"`            // Location to set breakpoint in.
	Condition string    `json:"condition,omitempty"` // Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.
}

SetBreakpointParams sets JavaScript breakpoint at a given location.

func SetBreakpoint

func SetBreakpoint(location *Location) *SetBreakpointParams

SetBreakpoint sets JavaScript breakpoint at a given location.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-setBreakpoint

parameters:

location - Location to set breakpoint in.

func (*SetBreakpointParams) Do

func (p *SetBreakpointParams) Do(ctx context.Context) (breakpointID BreakpointID, actualLocation *Location, err error)

Do executes Debugger.setBreakpoint against the provided context.

returns:

breakpointID - Id of the created breakpoint for further reference.
actualLocation - Location this breakpoint resolved into.

func (SetBreakpointParams) MarshalEasyJSON

func (v SetBreakpointParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetBreakpointParams) MarshalJSON

func (v SetBreakpointParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetBreakpointParams) UnmarshalEasyJSON

func (v *SetBreakpointParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetBreakpointParams) UnmarshalJSON

func (v *SetBreakpointParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

func (SetBreakpointParams) WithCondition

func (p SetBreakpointParams) WithCondition(condition string) *SetBreakpointParams

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

type SetBreakpointReturns

type SetBreakpointReturns struct {
	BreakpointID   BreakpointID `json:"breakpointId,omitempty"`   // Id of the created breakpoint for further reference.
	ActualLocation *Location    `json:"actualLocation,omitempty"` // Location this breakpoint resolved into.
}

SetBreakpointReturns return values.

func (SetBreakpointReturns) MarshalEasyJSON

func (v SetBreakpointReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetBreakpointReturns) MarshalJSON

func (v SetBreakpointReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetBreakpointReturns) UnmarshalEasyJSON

func (v *SetBreakpointReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetBreakpointReturns) UnmarshalJSON

func (v *SetBreakpointReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetBreakpointsActiveParams

type SetBreakpointsActiveParams struct {
	Active bool `json:"active"` // New value for breakpoints active state.
}

SetBreakpointsActiveParams activates / deactivates all breakpoints on the page.

func SetBreakpointsActive

func SetBreakpointsActive(active bool) *SetBreakpointsActiveParams

SetBreakpointsActive activates / deactivates all breakpoints on the page.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-setBreakpointsActive

parameters:

active - New value for breakpoints active state.

func (*SetBreakpointsActiveParams) Do

Do executes Debugger.setBreakpointsActive against the provided context.

func (SetBreakpointsActiveParams) MarshalEasyJSON

func (v SetBreakpointsActiveParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetBreakpointsActiveParams) MarshalJSON

func (v SetBreakpointsActiveParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetBreakpointsActiveParams) UnmarshalEasyJSON

func (v *SetBreakpointsActiveParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetBreakpointsActiveParams) UnmarshalJSON

func (v *SetBreakpointsActiveParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetInstrumentationBreakpointInstrumentation

type SetInstrumentationBreakpointInstrumentation string

SetInstrumentationBreakpointInstrumentation instrumentation name.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-setInstrumentationBreakpoint

const (
	SetInstrumentationBreakpointInstrumentationBeforeScriptExecution              SetInstrumentationBreakpointInstrumentation = "beforeScriptExecution"
	SetInstrumentationBreakpointInstrumentationBeforeScriptWithSourceMapExecution SetInstrumentationBreakpointInstrumentation = "beforeScriptWithSourceMapExecution"
)

SetInstrumentationBreakpointInstrumentation values.

func (SetInstrumentationBreakpointInstrumentation) MarshalEasyJSON

MarshalEasyJSON satisfies easyjson.Marshaler.

func (SetInstrumentationBreakpointInstrumentation) MarshalJSON

MarshalJSON satisfies json.Marshaler.

func (SetInstrumentationBreakpointInstrumentation) String

String returns the SetInstrumentationBreakpointInstrumentation as string value.

func (*SetInstrumentationBreakpointInstrumentation) UnmarshalEasyJSON

func (t *SetInstrumentationBreakpointInstrumentation) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*SetInstrumentationBreakpointInstrumentation) UnmarshalJSON

func (t *SetInstrumentationBreakpointInstrumentation) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type SetInstrumentationBreakpointParams

type SetInstrumentationBreakpointParams struct {
	Instrumentation SetInstrumentationBreakpointInstrumentation `json:"instrumentation"` // Instrumentation name.
}

SetInstrumentationBreakpointParams sets instrumentation breakpoint.

func SetInstrumentationBreakpoint

func SetInstrumentationBreakpoint(instrumentation SetInstrumentationBreakpointInstrumentation) *SetInstrumentationBreakpointParams

SetInstrumentationBreakpoint sets instrumentation breakpoint.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-setInstrumentationBreakpoint

parameters:

instrumentation - Instrumentation name.

func (*SetInstrumentationBreakpointParams) Do

func (p *SetInstrumentationBreakpointParams) Do(ctx context.Context) (breakpointID BreakpointID, err error)

Do executes Debugger.setInstrumentationBreakpoint against the provided context.

returns:

breakpointID - Id of the created breakpoint for further reference.

func (SetInstrumentationBreakpointParams) MarshalEasyJSON

func (v SetInstrumentationBreakpointParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetInstrumentationBreakpointParams) MarshalJSON

func (v SetInstrumentationBreakpointParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetInstrumentationBreakpointParams) UnmarshalEasyJSON

func (v *SetInstrumentationBreakpointParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetInstrumentationBreakpointParams) UnmarshalJSON

func (v *SetInstrumentationBreakpointParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetInstrumentationBreakpointReturns

type SetInstrumentationBreakpointReturns struct {
	BreakpointID BreakpointID `json:"breakpointId,omitempty"` // Id of the created breakpoint for further reference.
}

SetInstrumentationBreakpointReturns return values.

func (SetInstrumentationBreakpointReturns) MarshalEasyJSON

func (v SetInstrumentationBreakpointReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetInstrumentationBreakpointReturns) MarshalJSON

func (v SetInstrumentationBreakpointReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetInstrumentationBreakpointReturns) UnmarshalEasyJSON

func (v *SetInstrumentationBreakpointReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetInstrumentationBreakpointReturns) UnmarshalJSON

func (v *SetInstrumentationBreakpointReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetPauseOnExceptionsParams

type SetPauseOnExceptionsParams struct {
	State ExceptionsState `json:"state"` // Pause on exceptions mode.
}

SetPauseOnExceptionsParams defines pause on exceptions state. Can be set to stop on all exceptions, uncaught exceptions, or caught exceptions, no exceptions. Initial pause on exceptions state is none.

func SetPauseOnExceptions

func SetPauseOnExceptions(state ExceptionsState) *SetPauseOnExceptionsParams

SetPauseOnExceptions defines pause on exceptions state. Can be set to stop on all exceptions, uncaught exceptions, or caught exceptions, no exceptions. Initial pause on exceptions state is none.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-setPauseOnExceptions

parameters:

state - Pause on exceptions mode.

func (*SetPauseOnExceptionsParams) Do

Do executes Debugger.setPauseOnExceptions against the provided context.

func (SetPauseOnExceptionsParams) MarshalEasyJSON

func (v SetPauseOnExceptionsParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetPauseOnExceptionsParams) MarshalJSON

func (v SetPauseOnExceptionsParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetPauseOnExceptionsParams) UnmarshalEasyJSON

func (v *SetPauseOnExceptionsParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetPauseOnExceptionsParams) UnmarshalJSON

func (v *SetPauseOnExceptionsParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetReturnValueParams

type SetReturnValueParams struct {
	NewValue *runtime.CallArgument `json:"newValue"` // New return value.
}

SetReturnValueParams changes return value in top frame. Available only at return break position.

func SetReturnValue

func SetReturnValue(newValue *runtime.CallArgument) *SetReturnValueParams

SetReturnValue changes return value in top frame. Available only at return break position.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-setReturnValue

parameters:

newValue - New return value.

func (*SetReturnValueParams) Do

func (p *SetReturnValueParams) Do(ctx context.Context) (err error)

Do executes Debugger.setReturnValue against the provided context.

func (SetReturnValueParams) MarshalEasyJSON

func (v SetReturnValueParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetReturnValueParams) MarshalJSON

func (v SetReturnValueParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetReturnValueParams) UnmarshalEasyJSON

func (v *SetReturnValueParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetReturnValueParams) UnmarshalJSON

func (v *SetReturnValueParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetScriptSourceParams

type SetScriptSourceParams struct {
	ScriptID             runtime.ScriptID `json:"scriptId"`                       // Id of the script to edit.
	ScriptSource         string           `json:"scriptSource"`                   // New content of the script.
	DryRun               bool             `json:"dryRun,omitempty"`               // If true the change will not actually be applied. Dry run may be used to get result description without actually modifying the code.
	AllowTopFrameEditing bool             `json:"allowTopFrameEditing,omitempty"` // If true, then scriptSource is allowed to change the function on top of the stack as long as the top-most stack frame is the only activation of that function.
}

SetScriptSourceParams edits JavaScript source live. In general, functions that are currently on the stack can not be edited with a single exception: If the edited function is the top-most stack frame and that is the only activation of that function on the stack. In this case the live edit will be successful and a Debugger.restartFrame for the top-most function is automatically triggered.

func SetScriptSource

func SetScriptSource(scriptID runtime.ScriptID, scriptSource string) *SetScriptSourceParams

SetScriptSource edits JavaScript source live. In general, functions that are currently on the stack can not be edited with a single exception: If the edited function is the top-most stack frame and that is the only activation of that function on the stack. In this case the live edit will be successful and a Debugger.restartFrame for the top-most function is automatically triggered.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-setScriptSource

parameters:

scriptID - Id of the script to edit.
scriptSource - New content of the script.

func (*SetScriptSourceParams) Do

func (p *SetScriptSourceParams) Do(ctx context.Context) (status SetScriptSourceStatus, exceptionDetails *runtime.ExceptionDetails, err error)

Do executes Debugger.setScriptSource against the provided context.

returns:

status - Whether the operation was successful or not. Only Ok denotes a successful live edit while the other enum variants denote why the live edit failed.
exceptionDetails - Exception details if any. Only present when status is CompileError.

func (SetScriptSourceParams) MarshalEasyJSON

func (v SetScriptSourceParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetScriptSourceParams) MarshalJSON

func (v SetScriptSourceParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetScriptSourceParams) UnmarshalEasyJSON

func (v *SetScriptSourceParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetScriptSourceParams) UnmarshalJSON

func (v *SetScriptSourceParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

func (SetScriptSourceParams) WithAllowTopFrameEditing

func (p SetScriptSourceParams) WithAllowTopFrameEditing(allowTopFrameEditing bool) *SetScriptSourceParams

WithAllowTopFrameEditing if true, then scriptSource is allowed to change the function on top of the stack as long as the top-most stack frame is the only activation of that function.

func (SetScriptSourceParams) WithDryRun

func (p SetScriptSourceParams) WithDryRun(dryRun bool) *SetScriptSourceParams

WithDryRun if true the change will not actually be applied. Dry run may be used to get result description without actually modifying the code.

type SetScriptSourceReturns

type SetScriptSourceReturns struct {
	Status           SetScriptSourceStatus     `json:"status,omitempty"`           // Whether the operation was successful or not. Only Ok denotes a successful live edit while the other enum variants denote why the live edit failed.
	ExceptionDetails *runtime.ExceptionDetails `json:"exceptionDetails,omitempty"` // Exception details if any. Only present when status is CompileError.
}

SetScriptSourceReturns return values.

func (SetScriptSourceReturns) MarshalEasyJSON

func (v SetScriptSourceReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetScriptSourceReturns) MarshalJSON

func (v SetScriptSourceReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetScriptSourceReturns) UnmarshalEasyJSON

func (v *SetScriptSourceReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetScriptSourceReturns) UnmarshalJSON

func (v *SetScriptSourceReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetScriptSourceStatus

type SetScriptSourceStatus string

SetScriptSourceStatus whether the operation was successful or not. Only Ok denotes a successful live edit while the other enum variants denote why the live edit failed.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-setScriptSource

const (
	SetScriptSourceStatusOk                              SetScriptSourceStatus = "Ok"
	SetScriptSourceStatusCompileError                    SetScriptSourceStatus = "CompileError"
	SetScriptSourceStatusBlockedByActiveGenerator        SetScriptSourceStatus = "BlockedByActiveGenerator"
	SetScriptSourceStatusBlockedByActiveFunction         SetScriptSourceStatus = "BlockedByActiveFunction"
	SetScriptSourceStatusBlockedByTopLevelEsModuleChange SetScriptSourceStatus = "BlockedByTopLevelEsModuleChange"
)

SetScriptSourceStatus values.

func (SetScriptSourceStatus) MarshalEasyJSON

func (t SetScriptSourceStatus) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (SetScriptSourceStatus) MarshalJSON

func (t SetScriptSourceStatus) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (SetScriptSourceStatus) String

func (t SetScriptSourceStatus) String() string

String returns the SetScriptSourceStatus as string value.

func (*SetScriptSourceStatus) UnmarshalEasyJSON

func (t *SetScriptSourceStatus) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*SetScriptSourceStatus) UnmarshalJSON

func (t *SetScriptSourceStatus) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type SetSkipAllPausesParams

type SetSkipAllPausesParams struct {
	Skip bool `json:"skip"` // New value for skip pauses state.
}

SetSkipAllPausesParams makes page not interrupt on any pauses (breakpoint, exception, dom exception etc).

func SetSkipAllPauses

func SetSkipAllPauses(skip bool) *SetSkipAllPausesParams

SetSkipAllPauses makes page not interrupt on any pauses (breakpoint, exception, dom exception etc).

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-setSkipAllPauses

parameters:

skip - New value for skip pauses state.

func (*SetSkipAllPausesParams) Do

func (p *SetSkipAllPausesParams) Do(ctx context.Context) (err error)

Do executes Debugger.setSkipAllPauses against the provided context.

func (SetSkipAllPausesParams) MarshalEasyJSON

func (v SetSkipAllPausesParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetSkipAllPausesParams) MarshalJSON

func (v SetSkipAllPausesParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetSkipAllPausesParams) UnmarshalEasyJSON

func (v *SetSkipAllPausesParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetSkipAllPausesParams) UnmarshalJSON

func (v *SetSkipAllPausesParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetVariableValueParams

type SetVariableValueParams struct {
	ScopeNumber  int64                 `json:"scopeNumber"`  // 0-based number of scope as was listed in scope chain. Only 'local', 'closure' and 'catch' scope types are allowed. Other scopes could be manipulated manually.
	VariableName string                `json:"variableName"` // Variable name.
	NewValue     *runtime.CallArgument `json:"newValue"`     // New variable value.
	CallFrameID  CallFrameID           `json:"callFrameId"`  // Id of callframe that holds variable.
}

SetVariableValueParams changes value of variable in a callframe. Object-based scopes are not supported and must be mutated manually.

func SetVariableValue

func SetVariableValue(scopeNumber int64, variableName string, newValue *runtime.CallArgument, callFrameID CallFrameID) *SetVariableValueParams

SetVariableValue changes value of variable in a callframe. Object-based scopes are not supported and must be mutated manually.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-setVariableValue

parameters:

scopeNumber - 0-based number of scope as was listed in scope chain. Only 'local', 'closure' and 'catch' scope types are allowed. Other scopes could be manipulated manually.
variableName - Variable name.
newValue - New variable value.
callFrameID - Id of callframe that holds variable.

func (*SetVariableValueParams) Do

func (p *SetVariableValueParams) Do(ctx context.Context) (err error)

Do executes Debugger.setVariableValue against the provided context.

func (SetVariableValueParams) MarshalEasyJSON

func (v SetVariableValueParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetVariableValueParams) MarshalJSON

func (v SetVariableValueParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetVariableValueParams) UnmarshalEasyJSON

func (v *SetVariableValueParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetVariableValueParams) UnmarshalJSON

func (v *SetVariableValueParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type StepIntoParams

type StepIntoParams struct {
	BreakOnAsyncCall bool             `json:"breakOnAsyncCall,omitempty"` // Debugger will pause on the execution of the first async task which was scheduled before next pause.
	SkipList         []*LocationRange `json:"skipList,omitempty"`         // The skipList specifies location ranges that should be skipped on step into.
}

StepIntoParams steps into the function call.

func StepInto

func StepInto() *StepIntoParams

StepInto steps into the function call.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-stepInto

parameters:

func (*StepIntoParams) Do

func (p *StepIntoParams) Do(ctx context.Context) (err error)

Do executes Debugger.stepInto against the provided context.

func (StepIntoParams) MarshalEasyJSON

func (v StepIntoParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (StepIntoParams) MarshalJSON

func (v StepIntoParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*StepIntoParams) UnmarshalEasyJSON

func (v *StepIntoParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*StepIntoParams) UnmarshalJSON

func (v *StepIntoParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

func (StepIntoParams) WithBreakOnAsyncCall

func (p StepIntoParams) WithBreakOnAsyncCall(breakOnAsyncCall bool) *StepIntoParams

WithBreakOnAsyncCall debugger will pause on the execution of the first async task which was scheduled before next pause.

func (StepIntoParams) WithSkipList

func (p StepIntoParams) WithSkipList(skipList []*LocationRange) *StepIntoParams

WithSkipList the skipList specifies location ranges that should be skipped on step into.

type StepOutParams

type StepOutParams struct{}

StepOutParams steps out of the function call.

func StepOut

func StepOut() *StepOutParams

StepOut steps out of the function call.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-stepOut

func (*StepOutParams) Do

func (p *StepOutParams) Do(ctx context.Context) (err error)

Do executes Debugger.stepOut against the provided context.

func (StepOutParams) MarshalEasyJSON

func (v StepOutParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (StepOutParams) MarshalJSON

func (v StepOutParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*StepOutParams) UnmarshalEasyJSON

func (v *StepOutParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*StepOutParams) UnmarshalJSON

func (v *StepOutParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type StepOverParams

type StepOverParams struct {
	SkipList []*LocationRange `json:"skipList,omitempty"` // The skipList specifies location ranges that should be skipped on step over.
}

StepOverParams steps over the statement.

func StepOver

func StepOver() *StepOverParams

StepOver steps over the statement.

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#method-stepOver

parameters:

func (*StepOverParams) Do

func (p *StepOverParams) Do(ctx context.Context) (err error)

Do executes Debugger.stepOver against the provided context.

func (StepOverParams) MarshalEasyJSON

func (v StepOverParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (StepOverParams) MarshalJSON

func (v StepOverParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*StepOverParams) UnmarshalEasyJSON

func (v *StepOverParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*StepOverParams) UnmarshalJSON

func (v *StepOverParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

func (StepOverParams) WithSkipList

func (p StepOverParams) WithSkipList(skipList []*LocationRange) *StepOverParams

WithSkipList the skipList specifies location ranges that should be skipped on step over.

type WasmDisassemblyChunk

type WasmDisassemblyChunk struct {
	Lines           []string `json:"lines"`           // The next chunk of disassembled lines.
	BytecodeOffsets []int64  `json:"bytecodeOffsets"` // The bytecode offsets describing the start of each line.
}

WasmDisassemblyChunk [no description].

See: https://chromedevtools.github.io/devtools-protocol/tot/Debugger#type-WasmDisassemblyChunk

func (WasmDisassemblyChunk) MarshalEasyJSON

func (v WasmDisassemblyChunk) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (WasmDisassemblyChunk) MarshalJSON

func (v WasmDisassemblyChunk) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*WasmDisassemblyChunk) UnmarshalEasyJSON

func (v *WasmDisassemblyChunk) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*WasmDisassemblyChunk) UnmarshalJSON

func (v *WasmDisassemblyChunk) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL