Versions in this module Expand all Collapse all v0 v0.0.3 Jul 7, 2026 v0.0.2 Jul 7, 2026 Changes in this version + type Breakpoint struct + Condition string + Disabled bool + Line int + type Engine struct + func New(stopOnEntry bool) *Engine + func (e *Engine) Continue() + func (e *Engine) EvalInFrame(expr string, repr bool) (string, error) + func (e *Engine) EvalObject(expr string) (gad.Object, error) + func (e *Engine) Frames() []Frame + func (e *Engine) Locals() []Variable + func (e *Engine) Pause() + func (e *Engine) SetBreakpoints(lines []int) []int + func (e *Engine) SetConditionalBreakpoints(bps []Breakpoint) + func (e *Engine) Step(vm *gad.VM) + func (e *Engine) StepInto() + func (e *Engine) StepOut() + func (e *Engine) StepOver() + func (e *Engine) Stops() <-chan StopEvent + type Frame struct + Column int + File string + FuncName string + Line int + Locals []Variable + type StopEvent struct + Column int + File string + Line int + Reason StopReason + type StopReason string + const StopBreakpoint + const StopEntry + const StopPause + const StopStep + type Variable struct + Name string + Type string + Value string