()
| 215 | } |
| 216 | |
| 217 | public readEncodeInt64(): number { |
| 218 | const data = this.readEncodedUint64(); |
| 219 | const value = data << 0; |
| 220 | return (data & 1) > 0 ? -value : value; |
| 221 | } |
| 222 | |
| 223 | public readBytes(length?: number): ByteArray { |
| 224 | const len = length || this.length - this._position; |
nothing calls this directly
no test coverage detected