(self, context)
| 628 | return d |
| 629 | |
| 630 | def _visit_node(self, context): |
| 631 | if type(self.source) != str: |
| 632 | context.visit_child( |
| 633 | node=self.source, |
| 634 | replace=partial(self.__replace_source, visitor=context.visitor), |
| 635 | ) |
| 636 | |
| 637 | def __replace_source(self, value, visitor): |
| 638 | visitor.modified = True |
nothing calls this directly
no test coverage detected