addressRange is a range of addresses plus the object file that contains it.
| 182 | |
| 183 | // addressRange is a range of addresses plus the object file that contains it. |
| 184 | type addressRange struct { |
| 185 | begin, end uint64 |
| 186 | obj plugin.ObjFile |
| 187 | mapping *profile.Mapping |
| 188 | score int64 // Used to order ranges for processing |
| 189 | } |
| 190 | |
| 191 | // WebListData holds the data needed to generate HTML source code listing. |
| 192 | type WebListData struct { |
nothing calls this directly
no outgoing calls
no test coverage detected