()
| 1831 | }; |
| 1832 | |
| 1833 | const handleParseResult = () => { |
| 1834 | this.dependencies.sort( |
| 1835 | concatComparators( |
| 1836 | Dependency.compareLocations, |
| 1837 | keepOriginalOrder(this.dependencies) |
| 1838 | ) |
| 1839 | ); |
| 1840 | sortWithSourceOrder(this.dependencies, new WeakMap()); |
| 1841 | this._initBuildHash(compilation); |
| 1842 | this._lastSuccessfulBuildMeta = |
| 1843 | /** @type {BuildMeta} */ |
| 1844 | (this.buildMeta); |
| 1845 | return handleBuildDone(); |
| 1846 | }; |
| 1847 | |
| 1848 | const handleBuildDone = () => { |
| 1849 | try { |
nothing calls this directly
no test coverage detected