| 88 | } |
| 89 | |
| 90 | void EncodeStream::writeUint32(uint32_t value) { |
| 91 | if (checkCapacity(4)) { |
| 92 | dataView.setUint32(_position, value); |
| 93 | positionChanged(4); |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | void EncodeStream::writeInt64(int64_t value) { |
| 98 | if (checkCapacity(8)) { |
no outgoing calls
no test coverage detected