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