Home
last modified time | relevance | path

Searched refs:IsTSFunctionType (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/ts_types/
Dts_manager.cpp207 ASSERT(tsType->IsTSFunctionType()); in IsStaticFunc()
216 ASSERT(tsType->IsTSFunctionType()); in IsHotnessFunc()
225 ASSERT(tsType->IsTSFunctionType()); in SetHotnessFunc()
494 ASSERT(tsType->IsTSFunctionType()); in GetFuncName()
516 ASSERT(tsType->IsTSFunctionType()); in GetFunctionTypeLength()
525 ASSERT(tsType->IsTSFunctionType()); in GetFuncParameterTypeGT()
534 ASSERT(tsType->IsTSFunctionType()); in GetFuncThisGT()
545 ASSERT(tsType->IsTSFunctionType()); in IsGetterSetterFunc()
556 ASSERT(tsType->IsTSFunctionType()); in IsAbstractMethod()
567 ASSERT(tsType->IsTSFunctionType()); in IsMethodSignature()
[all …]
Dts_type.h177 CAST_CHECK(TSFunctionType, IsTSFunctionType);
Dts_type_parser.cpp470 ASSERT(tsType->IsTSFunctionType()); in FillInterfaceMethodTypes()
672 } else if (genericsType->IsTSFunctionType()) { in InstantiateGenericsType()
801 ASSERT(tsType->IsTSFunctionType()); in TryReplaceTypePara()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value-inl.h1400 inline bool JSTaggedValue::IsTSFunctionType() const in IsTSFunctionType() function
1402 return IsHeapObject() && GetTaggedObject()->GetClass()->IsTSFunctionType(); in IsTSFunctionType()
Djs_tagged_value.h633 bool IsTSFunctionType() const;
Djs_hclass.h1504 inline bool IsTSFunctionType() const in IsTSFunctionType() function
/arkcompiler/ets_runtime/ecmascript/ts_types/tests/
Dts_type_parser_test.cpp225 EXPECT_TRUE(type->IsTSFunctionType()); in HWTEST_F_L0()
/arkcompiler/ets_frontend/es2panda/typescript/extractor/
DtypeSystem.h480 …} else if (node->IsTSSignatureDeclaration() || node->IsTSFunctionType() || node->IsTSConstructorTy… in FunctionType()
525 } else if (node->IsTSFunctionType()) { in HandleFuncNodeWithoutName()
DtypeExtractor.cpp591 } else if (type->IsTSFunctionType()) { in GetTypeIndexFromAnnotation()
/arkcompiler/ets_frontend/ets2panda/parser/
DASparser.cpp673 if (type->IsTSFunctionType()) { in ParseTypeAnnotation()