Collect all compilation exportable modules from the import tree.
(self)
| 142 | return dso_modules |
| 143 | |
| 144 | def _collect_dso_modules(self): |
| 145 | """Collect all compilation exportable modules from the import tree.""" |
| 146 | return self._collect_from_import_tree(lambda m: m.is_compilation_exportable()) |
| 147 | |
| 148 | def export_library( |
| 149 | self, |
no test coverage detected