(self)
| 2694 | return self._items[0].is_type_obj() |
| 2695 | |
| 2696 | def type_object(self) -> mypy.nodes.TypeInfo: |
| 2697 | # All the items must have the same type object, so it's sufficient to |
| 2698 | # query only (any) one of them. |
| 2699 | return self._items[0].type_object() |
| 2700 | |
| 2701 | def with_name(self, name: str) -> Overloaded: |
| 2702 | ni: list[CallableType] = [] |
no outgoing calls
no test coverage detected