(self, o: LambdaExpr)
| 492 | self.tracker.skip_branch() |
| 493 | |
| 494 | def visit_lambda_expr(self, o: LambdaExpr) -> None: |
| 495 | self.tracker.enter_scope(ScopeType.Func) |
| 496 | super().visit_lambda_expr(o) |
| 497 | self.tracker.exit_scope() |
| 498 | |
| 499 | def visit_assert_stmt(self, o: AssertStmt) -> None: |
| 500 | super().visit_assert_stmt(o) |
nothing calls this directly
no test coverage detected