* Returns the module's top-down traversal index within this group. * @param {Module} module the module * @returns {number | undefined} index
(module)
| 644 | * @returns {number | undefined} index |
| 645 | */ |
| 646 | getModulePreOrderIndex(module) { |
| 647 | return this._modulePreOrderIndices.get(module); |
| 648 | } |
| 649 | |
| 650 | /** |
| 651 | * Stores the module's bottom-up traversal index within this group. |
no test coverage detected