(val)
| 1145 | } |
| 1146 | |
| 1147 | emit_u16(val) { |
| 1148 | this.ensure_space(2); |
| 1149 | this.buffer[this.length++] = val; |
| 1150 | this.buffer[this.length++] = val >> 8; |
| 1151 | } |
| 1152 | |
| 1153 | emit_u32(val) { |
| 1154 | this.ensure_space(4); |
nothing calls this directly
no test coverage detected