(fn)
| 923 | |
| 924 | addBeforeProcessHook(fn) { this.#beforeProcessHooks.push(fn); } |
| 925 | addAfterProcessHook(fn) { this.#afterProcessHooks.push(fn); } |
| 926 | |
| 927 | processNode(elt) { |
| 928 | for (var fn of this.#beforeProcessHooks) fn(elt); |
no outgoing calls
no test coverage detected