(fn)
| 2876 | this.#beforeProcessHooks.push(fn); |
| 2877 | } |
| 2878 | addAfterProcessHook(fn) { |
| 2879 | this.#afterProcessHooks.push(fn); |
| 2880 | } |
| 2881 | processNode(elt) { |
| 2882 | for (var fn of this.#beforeProcessHooks) fn(elt); |
| 2883 | var selector = this.#getScriptSelector(); |
no outgoing calls
no test coverage detected