(file string, start, limit, offset uint64, relocationSymbol string)
| 187 | type fakeObjTool struct{} |
| 188 | |
| 189 | func (obj fakeObjTool) Open(file string, start, limit, offset uint64, relocationSymbol string) (plugin.ObjFile, error) { |
| 190 | return fakeObj{}, nil |
| 191 | } |
| 192 | |
| 193 | func (obj fakeObjTool) Disasm(file string, start, end uint64, intelSyntax bool) ([]plugin.Inst, error) { |
| 194 | return []plugin.Inst{ |
nothing calls this directly
no outgoing calls
no test coverage detected