(c)
| 60 | this.#bytes.buffer.resize((this.#write + n + 31) & ~31); |
| 61 | } |
| 62 | writeChar(c) { |
| 63 | if (this.#write >= this.#bytes.length) |
| 64 | this.morebuf(1); |
| 65 | this.#bytes[this.#write++] = c; |
| 66 | } |
| 67 | writeChars(v, n) { |
| 68 | if (this.#write + n > this.#bytes.length) |
| 69 | this.morebuf(n); |
no test coverage detected