(b *buffer, tag int, len int)
| 70 | } |
| 71 | |
| 72 | func encodeLength(b *buffer, tag int, len int) { |
| 73 | encodeVarint(b, uint64(tag)<<3|2) |
| 74 | encodeVarint(b, uint64(len)) |
| 75 | } |
| 76 | |
| 77 | func encodeUint64(b *buffer, tag int, x uint64) { |
| 78 | // append varint to b.data |
no test coverage detected
searching dependent graphs…