(addr uint64)
| 69 | func (f fakeObj) ObjAddr(addr uint64) (uint64, error) { return addr, nil } |
| 70 | func (f fakeObj) BuildID() string { return "" } |
| 71 | func (f fakeObj) SourceLine(addr uint64) ([]driver.Frame, error) { |
| 72 | return nil, fmt.Errorf("SourceLine unimplemented") |
| 73 | } |
| 74 | func (f fakeObj) Symbols(r *regexp.Regexp, addr uint64) ([]*driver.Sym, error) { |
| 75 | return []*driver.Sym{ |
| 76 | { |
nothing calls this directly
no outgoing calls
no test coverage detected