* Get unresolved context tsh. * @private * @param {string} path context path * @param {(err?: WebpackError | null, contextTimestampAndHash?: ContextTimestampAndHash | null) => void} callback callback function * @returns {void}
(path, callback)
| 1795 | * @returns {void} |
| 1796 | */ |
| 1797 | _getUnresolvedContextTsh(path, callback) { |
| 1798 | const cache = this._contextTshs.get(path); |
| 1799 | if (cache !== undefined) return callback(null, cache); |
| 1800 | this.contextTshQueue.add(path, callback); |
| 1801 | } |
| 1802 | |
| 1803 | _createBuildDependenciesResolvers() { |
| 1804 | const resolveContext = createResolver({ |
no test coverage detected