(self, node: Cut)
| 364 | return self.generate_call(node.rhs) |
| 365 | |
| 366 | def visit_Cut(self, node: Cut) -> FunctionCall: |
| 367 | return FunctionCall( |
| 368 | assigned_variable="_cut_var", |
| 369 | return_type="int", |
| 370 | function="1", |
| 371 | nodetype=NodeTypes.CUT_OPERATOR, |
| 372 | ) |
| 373 | |
| 374 | def generate_call(self, node: Any) -> FunctionCall: |
| 375 | return super().visit(node) |
nothing calls this directly
no test coverage detected