(self, expr: LambdaExpr)
| 6412 | expr.sequences[0].accept(self) |
| 6413 | |
| 6414 | def visit_lambda_expr(self, expr: LambdaExpr) -> None: |
| 6415 | self.analyze_arg_initializers(expr) |
| 6416 | with self.inside_except_star_block_set(False, entering_loop=False): |
| 6417 | self.analyze_function_body(expr) |
| 6418 | |
| 6419 | def visit_conditional_expr(self, expr: ConditionalExpr) -> None: |
| 6420 | expr.if_expr.accept(self) |
nothing calls this directly
no test coverage detected