Return an instance type with type given by the name and no type arguments. Alias for TypeChecker.named_type.
(self, name: str)
| 6217 | return typ |
| 6218 | |
| 6219 | def named_type(self, name: str) -> Instance: |
| 6220 | """Return an instance type with type given by the name and no type |
| 6221 | arguments. Alias for TypeChecker.named_type. |
| 6222 | """ |
| 6223 | return self.chk.named_type(name) |
| 6224 | |
| 6225 | def type_alias_type_type(self) -> Instance: |
| 6226 | """Returns a `typing.TypeAliasType` or `typing_extensions.TypeAliasType`.""" |
no outgoing calls
no test coverage detected