(val)
| 1151 | } |
| 1152 | |
| 1153 | emit_u32(val) { |
| 1154 | this.ensure_space(4); |
| 1155 | this.buffer[this.length++] = val; |
| 1156 | this.buffer[this.length++] = val >> 8; |
| 1157 | this.buffer[this.length++] = val >> 16; |
| 1158 | this.buffer[this.length++] = val >> 24; |
| 1159 | } |
| 1160 | |
| 1161 | emit_leb_u(val, max_len) { |
| 1162 | this.ensure_space(max_len); |
nothing calls this directly
no test coverage detected