* Sets post order index. * @param {Module} module the module * @param {number} index the index of the module * @returns {void}
(module, index)
| 839 | * @returns {void} |
| 840 | */ |
| 841 | setPostOrderIndex(module, index) { |
| 842 | const mgm = this._getModuleGraphModule(module); |
| 843 | mgm.postOrderIndex = index; |
| 844 | } |
| 845 | |
| 846 | /** |
| 847 | * Sets post order index if unset. |
no test coverage detected