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