(e *encoder)
| 298 | func (r *infoExport) code() uint32 { return cRepInfo } |
| 299 | |
| 300 | func (r *infoExport) encode(e *encoder) { |
| 301 | e.writeUint16(cInfoExport) |
| 302 | e.writeUint64(r.size) |
| 303 | e.writeUint16(r.flags) |
| 304 | } |
| 305 | |
| 306 | func (r *infoExport) decode(e *encoder, l uint32) { |
| 307 | if l != 10 { |
nothing calls this directly
no test coverage detected