Versions in this module Expand all Collapse all v0 v0.9.0 Jul 18, 2017 Changes in this version + func NewClient(conn *rpcc.Conn) *domainClient + type BreakLocation struct + ColumnNumber *int + LineNumber int + ScriptID runtime.ScriptID + Type *string + type BreakpointID string + type BreakpointResolvedClient interface + Recv func() (*BreakpointResolvedReply, error) + type BreakpointResolvedReply struct + BreakpointID BreakpointID + Location Location + type CallFrame struct + CallFrameID CallFrameID + FunctionLocation *Location + FunctionName string + Location Location + ReturnValue *runtime.RemoteObject + ScopeChain []Scope + This runtime.RemoteObject + type CallFrameID string + type ContinueToLocationArgs struct + Location Location + TargetCallFrames *string + func NewContinueToLocationArgs(location Location) *ContinueToLocationArgs + func (a *ContinueToLocationArgs) SetTargetCallFrames(targetCallFrames string) *ContinueToLocationArgs + type EvaluateOnCallFrameArgs struct + CallFrameID CallFrameID + Expression string + GeneratePreview *bool + IncludeCommandLineAPI *bool + ObjectGroup *string + ReturnByValue *bool + Silent *bool + ThrowOnSideEffect *bool + func NewEvaluateOnCallFrameArgs(callFrameID CallFrameID, expression string) *EvaluateOnCallFrameArgs + func (a *EvaluateOnCallFrameArgs) SetGeneratePreview(generatePreview bool) *EvaluateOnCallFrameArgs + func (a *EvaluateOnCallFrameArgs) SetIncludeCommandLineAPI(includeCommandLineAPI bool) *EvaluateOnCallFrameArgs + func (a *EvaluateOnCallFrameArgs) SetObjectGroup(objectGroup string) *EvaluateOnCallFrameArgs + func (a *EvaluateOnCallFrameArgs) SetReturnByValue(returnByValue bool) *EvaluateOnCallFrameArgs + func (a *EvaluateOnCallFrameArgs) SetSilent(silent bool) *EvaluateOnCallFrameArgs + func (a *EvaluateOnCallFrameArgs) SetThrowOnSideEffect(throwOnSideEffect bool) *EvaluateOnCallFrameArgs + type EvaluateOnCallFrameReply struct + ExceptionDetails *runtime.ExceptionDetails + Result runtime.RemoteObject + type GetPossibleBreakpointsArgs struct + End *Location + RestrictToFunction *bool + Start Location + func NewGetPossibleBreakpointsArgs(start Location) *GetPossibleBreakpointsArgs + func (a *GetPossibleBreakpointsArgs) SetEnd(end Location) *GetPossibleBreakpointsArgs + func (a *GetPossibleBreakpointsArgs) SetRestrictToFunction(restrictToFunction bool) *GetPossibleBreakpointsArgs + type GetPossibleBreakpointsReply struct + Locations []BreakLocation + type GetScriptSourceArgs struct + ScriptID runtime.ScriptID + func NewGetScriptSourceArgs(scriptID runtime.ScriptID) *GetScriptSourceArgs + type GetScriptSourceReply struct + ScriptSource string + type Location struct + ColumnNumber *int + LineNumber int + ScriptID runtime.ScriptID + type PausedClient interface + Recv func() (*PausedReply, error) + type PausedReply struct + AsyncStackTrace *runtime.StackTrace + CallFrames []CallFrame + Data json.RawMessage + HitBreakpoints []string + Reason string + type RemoveBreakpointArgs struct + BreakpointID BreakpointID + func NewRemoveBreakpointArgs(breakpointID BreakpointID) *RemoveBreakpointArgs + type RestartFrameArgs struct + CallFrameID CallFrameID + func NewRestartFrameArgs(callFrameID CallFrameID) *RestartFrameArgs + type RestartFrameReply struct + AsyncStackTrace *runtime.StackTrace + CallFrames []CallFrame + type ResumedClient interface + Recv func() (*ResumedReply, error) + type ResumedReply struct + type Scope struct + EndLocation *Location + Name *string + Object runtime.RemoteObject + StartLocation *Location + Type string + type ScriptFailedToParseClient interface + Recv func() (*ScriptFailedToParseReply, error) + type ScriptFailedToParseReply struct + EndColumn int + EndLine int + ExecutionContextAuxData json.RawMessage + ExecutionContextID runtime.ExecutionContextID + HasSourceURL *bool + Hash string + IsModule *bool + Length *int + ScriptID runtime.ScriptID + SourceMapURL *string + StackTrace *runtime.StackTrace + StartColumn int + StartLine int + URL string + type ScriptParsedClient interface + Recv func() (*ScriptParsedReply, error) + type ScriptParsedReply struct + EndColumn int + EndLine int + ExecutionContextAuxData json.RawMessage + ExecutionContextID runtime.ExecutionContextID + HasSourceURL *bool + Hash string + IsLiveEdit *bool + IsModule *bool + Length *int + ScriptID runtime.ScriptID + SourceMapURL *string + StackTrace *runtime.StackTrace + StartColumn int + StartLine int + URL string + type ScriptPosition struct + ColumnNumber int + LineNumber int + type SearchInContentArgs struct + CaseSensitive *bool + IsRegex *bool + Query string + ScriptID runtime.ScriptID + func NewSearchInContentArgs(scriptID runtime.ScriptID, query string) *SearchInContentArgs + func (a *SearchInContentArgs) SetCaseSensitive(caseSensitive bool) *SearchInContentArgs + func (a *SearchInContentArgs) SetIsRegex(isRegex bool) *SearchInContentArgs + type SearchInContentReply struct + Result []SearchMatch + type SearchMatch struct + LineContent string + LineNumber float64 + type SetAsyncCallStackDepthArgs struct + MaxDepth int + func NewSetAsyncCallStackDepthArgs(maxDepth int) *SetAsyncCallStackDepthArgs + type SetBlackboxPatternsArgs struct + Patterns []string + func NewSetBlackboxPatternsArgs(patterns []string) *SetBlackboxPatternsArgs + type SetBlackboxedRangesArgs struct + Positions []ScriptPosition + ScriptID runtime.ScriptID + func NewSetBlackboxedRangesArgs(scriptID runtime.ScriptID, positions []ScriptPosition) *SetBlackboxedRangesArgs + type SetBreakpointArgs struct + Condition *string + Location Location + func NewSetBreakpointArgs(location Location) *SetBreakpointArgs + func (a *SetBreakpointArgs) SetCondition(condition string) *SetBreakpointArgs + type SetBreakpointByURLArgs struct + ColumnNumber *int + Condition *string + LineNumber int + URL *string + URLRegex *string + func NewSetBreakpointByURLArgs(lineNumber int) *SetBreakpointByURLArgs + func (a *SetBreakpointByURLArgs) SetColumnNumber(columnNumber int) *SetBreakpointByURLArgs + func (a *SetBreakpointByURLArgs) SetCondition(condition string) *SetBreakpointByURLArgs + func (a *SetBreakpointByURLArgs) SetURL(url string) *SetBreakpointByURLArgs + func (a *SetBreakpointByURLArgs) SetURLRegex(urlRegex string) *SetBreakpointByURLArgs + type SetBreakpointByURLReply struct + BreakpointID BreakpointID + Locations []Location + type SetBreakpointReply struct + ActualLocation Location + BreakpointID BreakpointID + type SetBreakpointsActiveArgs struct + Active bool + func NewSetBreakpointsActiveArgs(active bool) *SetBreakpointsActiveArgs + type SetPauseOnExceptionsArgs struct + State string + func NewSetPauseOnExceptionsArgs(state string) *SetPauseOnExceptionsArgs + type SetScriptSourceArgs struct + DryRun *bool + ScriptID runtime.ScriptID + ScriptSource string + func NewSetScriptSourceArgs(scriptID runtime.ScriptID, scriptSource string) *SetScriptSourceArgs + func (a *SetScriptSourceArgs) SetDryRun(dryRun bool) *SetScriptSourceArgs + type SetScriptSourceReply struct + AsyncStackTrace *runtime.StackTrace + CallFrames []CallFrame + ExceptionDetails *runtime.ExceptionDetails + StackChanged *bool + type SetSkipAllPausesArgs struct + Skip bool + func NewSetSkipAllPausesArgs(skip bool) *SetSkipAllPausesArgs + type SetVariableValueArgs struct + CallFrameID CallFrameID + NewValue runtime.CallArgument + ScopeNumber int + VariableName string + func NewSetVariableValueArgs(scopeNumber int, variableName string, newValue runtime.CallArgument, ...) *SetVariableValueArgs