(val)
| 698 | } |
| 699 | |
| 700 | emit_u32(val) { |
| 701 | this.ensure_space(4); |
| 702 | this.buffer[this.length++] = val; |
| 703 | this.buffer[this.length++] = val >> 8; |
| 704 | this.buffer[this.length++] = val >> 16; |
| 705 | this.buffer[this.length++] = val >> 24; |
| 706 | } |
| 707 | |
| 708 | emit_leb_u(val, max_len) { |
| 709 | this.ensure_space(max_len); |
nothing calls this directly
no test coverage detected