* Sets pre order index. * @param {Module} module the module * @param {number} index the index of the module * @returns {void}
(module, index)
| 813 | * @returns {void} |
| 814 | */ |
| 815 | setPreOrderIndex(module, index) { |
| 816 | const mgm = this._getModuleGraphModule(module); |
| 817 | mgm.preOrderIndex = index; |
| 818 | } |
| 819 | |
| 820 | /** |
| 821 | * Sets pre order index if unset. |
no test coverage detected