(e)
| 1820 | * @returns {void} |
| 1821 | */ |
| 1822 | const handleParseError = (e) => { |
| 1823 | const source = /** @type {Source} */ (this._source).source(); |
| 1824 | const loaders = this.loaders.map((item) => |
| 1825 | contextify(options.context, item.loader, compilation.compiler.root) |
| 1826 | ); |
| 1827 | const error = new ModuleParseError(source, e, loaders, this.type); |
| 1828 | this.markModuleAsErrored(error); |
| 1829 | this._initBuildHash(compilation); |
| 1830 | return callback(); |
| 1831 | }; |
| 1832 | |
| 1833 | const handleParseResult = () => { |
| 1834 | this.dependencies.sort( |
nothing calls this directly
no test coverage detected