@param {number} val
(val)
| 261 | |
| 262 | /** @param {number} val */ |
| 263 | writeFixed32(val) { |
| 264 | this.realloc(4); |
| 265 | this.dataView.setInt32(this.pos, val, true); |
| 266 | this.pos += 4; |
| 267 | } |
| 268 | |
| 269 | /** @param {number} val */ |
| 270 | writeSFixed32(val) { |
no test coverage detected