rawEvent is a helper type used during parsing.
| 80 | |
| 81 | // rawEvent is a helper type used during parsing. |
| 82 | type rawEvent struct { |
| 83 | off int |
| 84 | typ byte |
| 85 | args []uint64 |
| 86 | } |
| 87 | |
| 88 | // readTrace does wire-format parsing and verification. |
| 89 | // It does not care about specific event types and argument meaning. |
nothing calls this directly
no outgoing calls
no test coverage detected