Home
last modified time | relevance | path

Searched refs:IsTSObjectType (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/ts_types/
Dts_type.h52 CAST_CHECK(TSObjectType, IsTSObjectType);
Dts_manager.cpp164 } else if (type->IsTSObjectType()) { in GetPropType()
191 } else if (type->IsTSObjectType()) { in GetIndexSignType()
233 if (type->IsTSObjectType()) { in GetSuperGateType()
Dts_type_parser.cpp204 } else if (type->IsTSObjectType()) { in ParseIndexSigType()
679 } else if (genericsType->IsTSObjectType()) { in InstantiateGenericsType()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value-inl.h1360 inline bool JSTaggedValue::IsTSObjectType() const in IsTSObjectType() function
1362 return IsHeapObject() && GetTaggedObject()->GetClass()->IsTSObjectType(); in IsTSObjectType()
Djs_tagged_value.h628 bool IsTSObjectType() const;
Djs_hclass.h1479 inline bool IsTSObjectType() const in IsTSObjectType() function
Ddump.cpp3403 if (GetInstanceType().IsTSObjectType()) { in Dump()
3410 if (GetConstructorType().IsTSObjectType()) { in Dump()
3417 if (GetPrototypeType().IsTSObjectType()) { in Dump()
3455 if (GetFields().IsTSObjectType()) { in Dump()
/arkcompiler/ets_runtime/ecmascript/ts_types/tests/
Dts_type_parser_test.cpp418 EXPECT_TRUE(type->IsTSObjectType()); in HWTEST_F_L0()