(module_name)
| 53 | |
| 54 | |
| 55 | def hasRootModule(module_name): |
| 56 | for module in root_modules: |
| 57 | if module.getFullName() == module_name: |
| 58 | return True |
| 59 | |
| 60 | return False |
| 61 | |
| 62 | |
| 63 | def replaceRootModule(old, new): |
nothing calls this directly
no test coverage detected
searching dependent graphs…