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

# Functions

convertBreakpoint converts an internal breakpoint to an API Breakpoint.
No description provided by the author
convertGoroutine converts an internal Goroutine to an API Goroutine.
No description provided by the author
convertThread converts an internal thread to an API Thread.
convertVar converts an internal variable to an API Variable.

# Constants

Continue resumes process execution.
Halt suspends the process.
Next continues to the next source line, not entering function calls.
Step continues for a single instruction, entering function calls.
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.