(data)
| 728 | } |
| 729 | |
| 730 | emit_bytes(data) { |
| 731 | this.ensure_space(data.length); |
| 732 | this.buffer.set(data, this.length); |
| 733 | this.length += data.length; |
| 734 | } |
| 735 | |
| 736 | emit_string(string) { |
| 737 | // When testing illegal names, we pass a byte array directly. |
no test coverage detected