(self, e: Expression, method: str)
| 814 | self.add_operator_method_dependency(right, rev_method) |
| 815 | |
| 816 | def add_operator_method_dependency(self, e: Expression, method: str) -> None: |
| 817 | typ = get_proper_type(self.type_map.get(e)) |
| 818 | if typ is not None: |
| 819 | self.add_operator_method_dependency_for_type(typ, method) |
| 820 | |
| 821 | def add_operator_method_dependency_for_type(self, typ: ProperType, method: str) -> None: |
| 822 | # Note that operator methods can't be (non-metaclass) methods of type objects |
no test coverage detected