* Removes module attributes. * @param {Module} module the module * @returns {void}
(module)
| 430 | * @returns {void} |
| 431 | */ |
| 432 | removeModuleAttributes(module) { |
| 433 | const mgm = this._getModuleGraphModule(module); |
| 434 | mgm.postOrderIndex = null; |
| 435 | mgm.preOrderIndex = null; |
| 436 | mgm.depth = null; |
| 437 | mgm.async = false; |
| 438 | } |
| 439 | |
| 440 | /** |
| 441 | * Removes all module attributes. |
nothing calls this directly
no test coverage detected