Home
last modified time | relevance | path

Searched defs:TypeRefDecl (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/runtime_core/taihe/compiler/taihe/utils/
Dexceptions.py185 def __init__(self, ty_ref: "TypeRefDecl"):
240 last: tuple["TypeDecl", "TypeRefDecl"],
257 last: tuple["TypeDecl", "TypeRefDecl"],
258 other: list[tuple["TypeDecl", "TypeRefDecl"]],
/arkcompiler/runtime_core/taihe/compiler/taihe/semantics/
Ddeclarations.py156 class TypeRefDecl(DeclWithParent[Decl], metaclass=ABCMeta): class
210 ty_ref: TypeRefDecl,
274 def add_arg_ty_ref(self, p: TypeRefDecl):
551 ty_ref: TypeRefDecl,
578 ty_ref: TypeRefDecl,
682 def as_type(self, ty_ref: TypeRefDecl) -> UserType:
694 ty_ref: TypeRefDecl,
711 def as_type(self, ty_ref: TypeRefDecl) -> EnumType:
736 def as_type(self, ty_ref: TypeRefDecl) -> UnionType:
761 def as_type(self, ty_ref: TypeRefDecl) -> StructType:
[all …]
Dtypes.py138 def __call__(self, ty_ref: "TypeRefDecl") -> BuiltinType:
258 def __call__(self, ty_ref: "TypeRefDecl", *args: Type) -> GenericType:
Dformat.py81 def get_type_ref_decl(self, d: "TypeRefDecl"):
Dvisitor.py214 def visit_type_ref_decl(self, d: "TypeRefDecl") -> T:
321 def visit_type_ref_decl(self, d: "TypeRefDecl") -> None: