(type, data)
| 180 | } |
| 181 | |
| 182 | [kEmitMessage](type, data) { |
| 183 | this.emit(type, data); |
| 184 | // Disabling as this going to the user-land |
| 185 | // eslint-disable-next-line node-core/set-proto-to-null-in-object |
| 186 | this.#tryPush({ type, data }); |
| 187 | } |
| 188 | |
| 189 | #tryPush(message) { |
| 190 | if (this.#canPush) { |