(type, root = null)
| 1228 | // Kernel delegation methods |
| 1229 | // =========================== |
| 1230 | parseElement(type, root = null) { |
| 1231 | return this.#kernel.parseElement(type, this, root); |
| 1232 | } |
| 1233 | requireElement(type, message, root) { |
| 1234 | return this.#kernel.requireElement(type, this, message, root); |
| 1235 | } |
nothing calls this directly
no test coverage detected