feat: add special namespaces module/global

This commit is contained in:
Shunsuke Shibayama 2023-05-03 14:32:09 +09:00
parent c4a0efae08
commit 730886021e
29 changed files with 349 additions and 193 deletions

View file

@ -4,17 +4,27 @@
.Hashable: ClassType
.Sized: ClassType
.Callable: ClassType
.Callable.
__getitem__: (params: [Type; _], Type) -> Type
.Iterable: ClassType
.Iterable.
__getitem__: Type -> Type
.Collection: ClassType
.Iterator: ClassType
.Iterator.
__getitem__: Type -> Type
.Reversible: ClassType
.Genertor: ClassType
.Sequence: ClassType
.Sequence.
__getitem__: Type -> Type
.MutableSqunce: ClassType
.ByteString: ClassType
.Set: ClassType
.MutableSet: ClassType
.Mapping: ClassType
.Mapping.
__getitem__: (Type, Type) -> Type
.MutableMapping: ClassType
.MappingView: ClassType
.ItemsView: ClassType