(frame uint64)
| 250 | } |
| 251 | |
| 252 | func (f *internalObjFile) SourceLine(frame uint64) ([]plugin.Frame, error) { |
| 253 | frames, err := f.ObjFile.SourceLine(frame) |
| 254 | if err != nil { |
| 255 | return nil, err |
| 256 | } |
| 257 | var pluginFrames []plugin.Frame |
| 258 | for _, f := range frames { |
| 259 | pluginFrames = append(pluginFrames, plugin.Frame(f)) |
| 260 | } |
| 261 | return pluginFrames, nil |
| 262 | } |
| 263 | |
| 264 | func (f *internalObjFile) Symbols(r *regexp.Regexp, addr uint64) ([]*plugin.Sym, error) { |
| 265 | syms, err := f.ObjFile.Symbols(r, addr) |
nothing calls this directly
no test coverage detected