An Inst is a single instruction in an assembly listing.
| 150 | |
| 151 | // An Inst is a single instruction in an assembly listing. |
| 152 | type Inst struct { |
| 153 | Addr uint64 // virtual address of instruction |
| 154 | Text string // instruction text |
| 155 | Function string // function name |
| 156 | File string // source file |
| 157 | Line int // source line |
| 158 | } |
| 159 | |
| 160 | // An ObjFile is a single object file: a shared library or executable. |
| 161 | type ObjFile interface { |
nothing calls this directly
no outgoing calls
no test coverage detected