chromedp/cdp/debugger/events.go
2017-01-26 14:28:34 +07:00

72 lines
4.7 KiB
Go

package debugger
// AUTOGENERATED. DO NOT EDIT.
import (
cdp "github.com/knq/chromedp/cdp"
"github.com/knq/chromedp/cdp/runtime"
"github.com/mailru/easyjson"
)
// EventScriptParsed fired when virtual machine parses script. This event is
// also fired for all known and uncollected scripts upon enabling debugger.
type EventScriptParsed struct {
ScriptID runtime.ScriptID `json:"scriptId,omitempty"` // Identifier of the script parsed.
URL string `json:"url,omitempty"` // URL or name of the script parsed (if any).
StartLine int64 `json:"startLine,omitempty"` // Line offset of the script within the resource with given URL (for script tags).
StartColumn int64 `json:"startColumn,omitempty"` // Column offset of the script within the resource with given URL.
EndLine int64 `json:"endLine,omitempty"` // Last line of the script.
EndColumn int64 `json:"endColumn,omitempty"` // Length of the last line of the script.
ExecutionContextID runtime.ExecutionContextID `json:"executionContextId,omitempty"` // Specifies script creation context.
Hash string `json:"hash,omitempty"` // Content hash of the script.
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.
}
// EventScriptFailedToParse fired when virtual machine fails to parse the
// script.
type EventScriptFailedToParse struct {
ScriptID runtime.ScriptID `json:"scriptId,omitempty"` // Identifier of the script parsed.
URL string `json:"url,omitempty"` // URL or name of the script parsed (if any).
StartLine int64 `json:"startLine,omitempty"` // Line offset of the script within the resource with given URL (for script tags).
StartColumn int64 `json:"startColumn,omitempty"` // Column offset of the script within the resource with given URL.
EndLine int64 `json:"endLine,omitempty"` // Last line of the script.
EndColumn int64 `json:"endColumn,omitempty"` // Length of the last line of the script.
ExecutionContextID runtime.ExecutionContextID `json:"executionContextId,omitempty"` // Specifies script creation context.
Hash string `json:"hash,omitempty"` // Content hash of the script.
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.
}
// EventBreakpointResolved fired when breakpoint is resolved to an actual
// script and location.
type EventBreakpointResolved struct {
BreakpointID BreakpointID `json:"breakpointId,omitempty"` // Breakpoint unique identifier.
Location *Location `json:"location,omitempty"` // Actual breakpoint location.
}
// EventPaused fired when the virtual machine stopped on breakpoint or
// exception or any other stop criteria.
type EventPaused struct {
CallFrames []*CallFrame `json:"callFrames,omitempty"` // Call stack the virtual machine stopped on.
Reason PausedReason `json:"reason,omitempty"` // 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.
}
// EventResumed fired when the virtual machine resumed execution.
type EventResumed struct{}
// EventTypes all event types in the domain.
var EventTypes = []cdp.MethodType{
cdp.EventDebuggerScriptParsed,
cdp.EventDebuggerScriptFailedToParse,
cdp.EventDebuggerBreakpointResolved,
cdp.EventDebuggerPaused,
cdp.EventDebuggerResumed,
}