* Processes the provided reg exp. * @param {RegExp} regExp RegExp for which the request is tested * @param {(request: string) => boolean} loader loader to load the request, returns true when successful * @returns {void}
(regExp, loader)
| 259 | * @returns {void} |
| 260 | */ |
| 261 | static registerLoader(regExp, loader) { |
| 262 | loaders.set(regExp, loader); |
| 263 | } |
| 264 | |
| 265 | /** |
| 266 | * Processes the provided constructor. |