The general with visiting method. Parameters ---------- node : doc.With The doc AST with node. Returns ------- res : Any The visiting result.
(self, node: doc.With)
| 787 | return _dispatch(self, "While")(self, node) |
| 788 | |
| 789 | def visit_With(self, node: doc.With) -> Any: # pylint: disable=invalid-name |
| 790 | """The general with visiting method. |
| 791 | |
| 792 | Parameters |
| 793 | ---------- |
| 794 | node : doc.With |
| 795 | The doc AST with node. |
| 796 | |
| 797 | Returns |
| 798 | ------- |
| 799 | res : Any |
| 800 | The visiting result. |
| 801 | """ |
| 802 | return _dispatch(self, "With")(self, node) |
| 803 | |
| 804 | def visit_Assign(self, node: doc.Assign) -> Any: # pylint: disable=invalid-name |
| 805 | """The general assign visiting method. |
nothing calls this directly
no test coverage detected