* Stores the module's bottom-up traversal index within this group. * @param {Module} module module for which the index should be set * @param {number} index the index of the module * @returns {void}
(module, index)
| 654 | * @returns {void} |
| 655 | */ |
| 656 | setModulePostOrderIndex(module, index) { |
| 657 | this._modulePostOrderIndices.set(module, index); |
| 658 | } |
| 659 | |
| 660 | /** |
| 661 | * Returns the module's bottom-up traversal index within this group. |
no test coverage detected