Versions in this module Expand all Collapse all v0 v0.27.0 Sep 4, 2018 v0.26.0 Aug 7, 2018 v0.25.0 Jul 12, 2018 v0.24.0 Jun 20, 2018 Changes in this version + type Array struct + Address uint64 + ElementTypeID uint64 + Length uint64 + StrideBits uint64 + func (a Array) Element(index uint64) Var + func (a Array) Len() uint64 + type Channel struct + Address uint64 + Buffer uint64 + BufferStart uint64 + Capacity uint64 + ElementTypeID uint64 + Length uint64 + Stride uint64 + func (m Channel) Element(index uint64) Var + type File interface + type Frame struct + File string + Function string + FunctionStart uint64 + Line uint64 + PC uint64 + Params []Param + SP uint64 + Vars []LocalVar + func (f Frame) String() string + type Func struct + Address uint64 + type Goroutine struct + Caller string + Function string + ID int64 + StackFrames []Frame + Status GoroutineStatus + StatusString string + func (g *Goroutine) String() string + type GoroutineStatus byte + const Blocked + const Queued + const Running + func (g GoroutineStatus) String() string + type Interface struct + type LocalVar struct + Name string + Var Var + type Map struct + Address uint64 + Length uint64 + TypeID uint64 + type Param struct + Name string + Var Var + type Pointer struct + Address uint64 + TypeID uint64 + type Program interface + Breakpoint func(address uint64) (PCs []uint64, err error) + BreakpointAtFunction func(name string) (PCs []uint64, err error) + BreakpointAtLine func(file string, line uint64) (PCs []uint64, err error) + DeleteBreakpoints func(pcs []uint64) error + Eval func(expr string) ([]string, error) + Evaluate func(e string) (Value, error) + Frames func(count int) ([]Frame, error) + Goroutines func() ([]*Goroutine, error) + Kill func() (Status, error) + MapElement func(m Map, index uint64) (Var, Var, error) + Open func(name string, mode string) (File, error) + Resume func() (Status, error) + Run func(args ...string) (Status, error) + Stop func() (Status, error) + Value func(v Var) (Value, error) + VarByName func(name string) (Var, error) + type Slice struct + Capacity uint64 + type Status struct + PC uint64 + SP uint64 + type String struct + Length uint64 + String string + type Struct struct + Fields []StructField + type StructField struct + Name string + Var Var + type Value interface + type Var struct + Address uint64 + TypeID uint64