(self)
| 583 | return self.meta_level > 0 |
| 584 | |
| 585 | def is_self(self) -> bool: |
| 586 | # This is a special value indicating typing.Self variable. |
| 587 | return self.raw_id == 0 |
| 588 | |
| 589 | |
| 590 | class TypeVarLikeType(ProperType): |
no outgoing calls
no test coverage detected