* Stores the module's top-down 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)
| 635 | * @returns {void} |
| 636 | */ |
| 637 | setModulePreOrderIndex(module, index) { |
| 638 | this._modulePreOrderIndices.set(module, index); |
| 639 | } |
| 640 | |
| 641 | /** |
| 642 | * Returns the module's top-down traversal index within this group. |
no test coverage detected