* Get unresolved context hash. * @private * @param {string} path context path * @param {(err?: WebpackError | null, contextHash?: ContextHash | null) => void} callback callback function * @returns {void}
(path, callback)
| 1760 | * @returns {void} |
| 1761 | */ |
| 1762 | _getUnresolvedContextHash(path, callback) { |
| 1763 | const cache = this._contextHashes.get(path); |
| 1764 | if (cache !== undefined) return callback(null, cache); |
| 1765 | this.contextHashQueue.add(path, callback); |
| 1766 | } |
| 1767 | |
| 1768 | /** |
| 1769 | * Returns context tsh. |
no test coverage detected