@param {number} val
(val)
| 268 | |
| 269 | /** @param {number} val */ |
| 270 | writeSFixed32(val) { |
| 271 | this.realloc(4); |
| 272 | this.dataView.setInt32(this.pos, val, true); |
| 273 | this.pos += 4; |
| 274 | } |
| 275 | |
| 276 | /** @param {number} val */ |
| 277 | writeFixed64(val) { |
no test coverage detected