WebListInstruction holds the per-instruction information for HTML source code listing.
| 221 | |
| 222 | // WebListInstruction holds the per-instruction information for HTML source code listing. |
| 223 | type WebListInstruction struct { |
| 224 | NewBlock bool // Insert marker that indicates separation from previous block |
| 225 | Flat string |
| 226 | Cumulative string |
| 227 | Synthetic bool |
| 228 | Address uint64 |
| 229 | Disasm string |
| 230 | FileLine string |
| 231 | InlinedCalls []WebListCall |
| 232 | } |
| 233 | |
| 234 | // WebListCall holds the per-inlined-call information for HTML source code listing. |
| 235 | type WebListCall struct { |
nothing calls this directly
no outgoing calls
no test coverage detected