(self, visitor: ExpressionVisitor[T])
| 2884 | return expr |
| 2885 | |
| 2886 | def accept(self, visitor: ExpressionVisitor[T]) -> T: |
| 2887 | return visitor.visit_lambda_expr(self) |
| 2888 | |
| 2889 | def is_dynamic(self) -> bool: |
| 2890 | return False |
nothing calls this directly
no test coverage detected