* @param {UpdateEncoderV1 | UpdateEncoderV2} encoder * @param {number} offset * @param {number} offsetEnd
(encoder, offset, offsetEnd)
| 93 | * @param {number} offsetEnd |
| 94 | */ |
| 95 | write (encoder, offset, offsetEnd) { |
| 96 | encoder.writeString((offset === 0 && offsetEnd === 0) ? this.str : this.str.slice(offset, this.str.length - offsetEnd)) |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * @return {number} |
nothing calls this directly
no test coverage detected