(fn)
| 2874 | #beforeProcessHooks = []; |
| 2875 | #afterProcessHooks = []; |
| 2876 | addBeforeProcessHook(fn) { |
| 2877 | this.#beforeProcessHooks.push(fn); |
| 2878 | } |
| 2879 | addAfterProcessHook(fn) { |
| 2880 | this.#afterProcessHooks.push(fn); |
| 2881 | } |
no outgoing calls
no test coverage detected