(v int16)
| 158 | } |
| 159 | |
| 160 | func (d *debugWriter) WriteInt16(v int16) error { |
| 161 | err := d.w.WriteInt16(v) |
| 162 | d.log("WriteInt16", v, err) |
| 163 | return err |
| 164 | } |
| 165 | |
| 166 | func (d *debugWriter) WriteInt32(v int32) error { |
| 167 | err := d.w.WriteInt32(v) |
nothing calls this directly
no test coverage detected