package
0.11.0-alpha
Repository: https://github.com/alexbrainman/delve.git
Documentation: pkg.go.dev

# Functions

ConvertBreakpoint converts from a proc.Breakpoint to an api.Breakpoint.
ConvertFunction converts from gosym.Func to api.Function.
ConvertGoroutine converts from proc.G to api.Goroutine.
ConvertLocation converts from proc.Location to api.Location.
ConvertThread converts a proc.Thread into an api thread.
ConvertVar converts from proc.Variable to api.Variable.

# Constants

Continue resumes process execution.
Halt suspends the process.
Next continues to the next source line, not entering function calls.
Step continues to next source line, entering function calls.
SingleStep continues for exactly 1 cpu instruction.
SwitchGoroutine switches the debugger's current thread context to the thread running the specified goroutine.
SwitchThread switches the debugger's current thread context.

# Structs

Breakpoint addresses a location at which process execution may be suspended.
Informations about the current breakpoint.
DebuggerCommand is a command which changes the debugger's execution state.
DebuggerState represents the current context of the debugger.
No description provided by the author
Function represents thread-scoped function information.
Goroutine represents the information relevant to Delve from the runtime's internal G structure.
No description provided by the author
No description provided by the author
Thread is a thread within the debugged process.
Variable describes a variable.