(data)
| 1181 | } |
| 1182 | |
| 1183 | emit_bytes(data) { |
| 1184 | this.ensure_space(data.length); |
| 1185 | this.buffer.set(data, this.length); |
| 1186 | this.length += data.length; |
| 1187 | } |
| 1188 | |
| 1189 | emit_string(string) { |
| 1190 | // When testing illegal names, we pass a byte array directly. |
no test coverage detected