Versions in this module Expand all Collapse all v0 v0.0.1 Aug 17, 2022 Changes in this version + type Disasm struct + func (d *Disasm) Decode(start, end uint64, f func(pc, size uint64, file string, line int, text string)) + func (d *Disasm) Print(w io.Writer, filter *regexp.Regexp, start, end uint64) + type File struct + func Open(name string) (*File, error) + func (f *File) Close() error + func (f *File) Disasm() (*Disasm, error) + func (f *File) GOARCH() string + func (f *File) PCLineTable() (*gosym.Table, error) + func (f *File) Symbols() ([]Sym, error) + func (f *File) Text() (uint64, []byte, error) + type Sym struct + Addr uint64 + Code rune + Name string + Size int64 + Type string