Method
visit_Rhs
(
self, node: Rhs, is_loop: bool, is_gather: bool, rulename: str | None
)
Source from the content-addressed store, hash-verified
| 717 | self.print(call) |
| 718 | |
| 719 | def visit_Rhs( |
| 720 | self, node: Rhs, is_loop: bool, is_gather: bool, rulename: str | None |
| 721 | ) -> None: |
| 722 | if is_loop: |
| 723 | assert len(node.alts) == 1 |
| 724 | for alt in node.alts: |
| 725 | self.visit(alt, is_loop=is_loop, is_gather=is_gather, rulename=rulename) |
| 726 | |
| 727 | def join_conditions(self, keyword: str, node: Any) -> None: |
| 728 | self.print(f"{keyword} (") |
Callers
nothing calls this directly
Tested by
no test coverage detected