Home
last modified time | relevance | path

Searched refs:NullType (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_frontend/es2panda/typescript/types/
DnullType.cpp20 void NullType::ToString(std::stringstream &ss) const in ToString()
25 void NullType::Identical(TypeRelation *relation, Type *other) in Identical()
32 bool NullType::AssignmentSource(TypeRelation *relation, [[maybe_unused]] Type *target) in AssignmentSource()
38 void NullType::AssignmentTarget([[maybe_unused]] TypeRelation *relation, [[maybe_unused]] Type *sou… in AssignmentTarget()
40 TypeFacts NullType::GetTypeFacts() const in GetTypeFacts()
45 Type *NullType::Instantiate([[maybe_unused]] ArenaAllocator *allocator, [[maybe_unused]] TypeRelati… in Instantiate()
DnullType.h23 class NullType : public Type {
25 NullType() : Type(TypeFlag::NULL_TYPE) {} in NullType() function
DtypeMapping.h30 _(TypeFlag::NULL_TYPE, NullType) \
DglobalTypesHolder.cpp48 globalTypes_[static_cast<size_t>(GlobalTypeId::NULL_ID)] = allocator->New<NullType>(); in GlobalTypesHolder()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dtype.h107 static GateType NullType() in NullType() function
Dbytecode_circuit_builder.cpp836 GateType::NullType()); in NewConst()
/arkcompiler/ets_runtime/ecmascript/compiler/type_inference/
Dmethod_type_infer.cpp438 auto nullType = GateType::NullType(); in InferLdNull()