(bytes)
| 164 | state.position += 4; |
| 165 | } |
| 166 | writeBytes(bytes) { |
| 167 | const state = this.state; |
| 168 | if (state.result) |
| 169 | state.result.set(bytes, state.position); |
| 170 | state.position += bytes.byteLength; |
| 171 | } |
| 172 | writeName(parts) { |
| 173 | const state = this.state; |
| 174 | for (let i = 0; i < parts.length; i++) { |
no test coverage detected