Home
last modified time | relevance | path

Searched refs:AssignmentSource (Results 1 – 13 of 13) sorted by relevance

/arkcompiler/ets_frontend/es2panda/typescript/types/
DundefinedType.h29 bool AssignmentSource(TypeRelation *relation, Type *target) override;
DnullType.h29 bool AssignmentSource(TypeRelation *relation, Type *target) override;
DanyType.h30 bool AssignmentSource(TypeRelation *relation, Type *target) override;
DneverType.h31 bool AssignmentSource(TypeRelation *relation, Type *target) override;
Dtype.cpp34 bool Type::AssignmentSource([[maybe_unused]] TypeRelation *relation, [[maybe_unused]] Type *target) in AssignmentSource() function in panda::es2panda::checker::Type
DneverType.cpp42 bool NeverType::AssignmentSource(TypeRelation *relation, [[maybe_unused]] Type *target) in AssignmentSource() function in panda::es2panda::checker::NeverType
DanyType.cpp37 bool AnyType::AssignmentSource(TypeRelation *relation, [[maybe_unused]] Type *target) in AssignmentSource() function in panda::es2panda::checker::AnyType
DundefinedType.cpp32 bool UndefinedType::AssignmentSource(TypeRelation *relation, [[maybe_unused]] Type *target) in AssignmentSource() function in panda::es2panda::checker::UndefinedType
DnullType.cpp32 bool NullType::AssignmentSource(TypeRelation *relation, [[maybe_unused]] Type *target) in AssignmentSource() function in panda::es2panda::checker::NullType
Dtype.h121 virtual bool AssignmentSource(TypeRelation *relation, Type *target); in TYPE_MAPPING()
DunionType.h117 bool AssignmentSource(TypeRelation *relation, Type *target) override;
DunionType.cpp58 bool UnionType::AssignmentSource(TypeRelation *relation, Type *target) in AssignmentSource() function in panda::es2panda::checker::UnionType
DtypeRelation.cpp130 if (!source->AssignmentSource(this, target)) { in IsAssignableTo()