(file string, start, limit, offset uint64, relocationSymbol string)
| 91 | type fakeObjTool struct{} |
| 92 | |
| 93 | func (obj fakeObjTool) Open(file string, start, limit, offset uint64, relocationSymbol string) (driver.ObjFile, error) { |
| 94 | return fakeObj{}, nil |
| 95 | } |
| 96 | |
| 97 | func (obj fakeObjTool) Disasm(file string, start, end uint64, intelSyntax bool) ([]driver.Inst, error) { |
| 98 | return []driver.Inst{ |
nothing calls this directly
no outgoing calls
no test coverage detected