(self, o: Node, ann: str | Annotation, priority: int = 1)
| 409 | super().visit_lambda_expr(o) |
| 410 | |
| 411 | def annotate(self, o: Node, ann: str | Annotation, priority: int = 1) -> None: |
| 412 | if isinstance(ann, str): |
| 413 | ann = Annotation(ann, priority=priority) |
| 414 | self.anns.setdefault(o.line, []).append(ann) |
| 415 | |
| 416 | def get_type(self, e: Expression) -> ProperType: |
| 417 | t = self.type_map.get(e) |
no test coverage detected