(self, o: ImportAll)
| 421 | self.add_dependency(make_trigger(module_id + "." + name)) |
| 422 | |
| 423 | def visit_import_all(self, o: ImportAll) -> None: |
| 424 | module_id, _ = correct_relative_import( |
| 425 | self.scope.current_module_id(), o.relative, o.id, self.is_package_init_file |
| 426 | ) |
| 427 | # The current target needs to be rechecked if anything "significant" changes in the |
| 428 | # target module namespace (as the imported definitions will need to be updated). |
| 429 | self.add_dependency(make_wildcard_trigger(module_id)) |
| 430 | |
| 431 | def visit_block(self, o: Block) -> None: |
| 432 | if not o.is_unreachable: |
nothing calls this directly
no test coverage detected