(e *encoder)
| 318 | func (r *infoName) code() uint32 { return cRepInfo } |
| 319 | |
| 320 | func (r *infoName) encode(e *encoder) { |
| 321 | e.writeUint16(cInfoName) |
| 322 | e.writeString(r.name) |
| 323 | } |
| 324 | |
| 325 | func (r *infoName) decode(e *encoder, l uint32) { |
| 326 | if l > (4 << 10) { |
nothing calls this directly
no test coverage detected