* Returns the module's bottom-up traversal index within this group. * @param {Module} module the module * @returns {number | undefined} index
(module)
| 663 | * @returns {number | undefined} index |
| 664 | */ |
| 665 | getModulePostOrderIndex(module) { |
| 666 | return this._modulePostOrderIndices.get(module); |
| 667 | } |
| 668 | |
| 669 | /* istanbul ignore next */ |
| 670 | checkConstraints() { |
no test coverage detected