* Fetches a module from a compilation by its identifier * @param {Module} module the module provided * @returns {Module} the module requested
(module)
| 1661 | * @returns {Module} the module requested |
| 1662 | */ |
| 1663 | getModule(module) { |
| 1664 | const identifier = module.identifier(); |
| 1665 | return /** @type {Module} */ (this._modules.get(identifier)); |
| 1666 | } |
| 1667 | |
| 1668 | /** |
| 1669 | * Attempts to search for a module by its identifier |
no test coverage detected