Home
last modified time | relevance | path

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

/arkcompiler/ets_frontend/ets2panda/compiler/lowering/scopesInit/
DsavedBindingsCtx.cpp53 if (rhs->IsFunctionDeclaration()) { in BindExportDecl()
/arkcompiler/ets_frontend/ets2panda/checker/ts/
Dfunction.cpp518 if ((*it)->IsFunctionDeclaration() && (*it)->AsFunctionDeclaration()->Function() == node) { in FindSubsequentFunctionNode()
544 if (!subsequentNode->IsFunctionDeclaration()) { in InferFunctionDeclarationType()
/arkcompiler/ets_frontend/es2panda/typescript/core/
Dfunction.cpp535 if ((*it)->IsFunctionDeclaration() && (*it)->AsFunctionDeclaration()->Function() == node) { in FindSubsequentFunctionNode()
562 if (!subsequentNode->IsFunctionDeclaration()) { in InferFunctionDeclarationType()
/arkcompiler/ets_frontend/es2panda/parser/
DstatementParser.cpp2350 …(declNode->IsFunctionDeclaration() && declNode->AsFunctionDeclaration()->Function()->IsOverload())… in AddExportDefaultEntryItem()
2358 if (declNode->IsFunctionDeclaration() || declNode->IsClassDeclaration()) { in AddExportDefaultEntryItem()
2359 …localName = declNode->IsFunctionDeclaration() ? declNode->AsFunctionDeclaration()->Function()->Get… in AddExportDefaultEntryItem()
2399 if (declNode->IsFunctionDeclaration() || declNode->IsClassDeclaration()) { in AddExportLocalEntryItem()
2400 auto name = declNode->IsFunctionDeclaration() ? in AddExportLocalEntryItem()
2407 …if (declNode->IsFunctionDeclaration() && declNode->AsFunctionDeclaration()->Function()->IsOverload… in AddExportLocalEntryItem()
/arkcompiler/ets_frontend/ets2panda/util/
Dhelpers.cpp526 if (func->Parent()->IsFunctionDeclaration()) { in FunctionName()
/arkcompiler/ets_frontend/ets2panda/public/
Des2panda_lib.h242 bool (*IsFunctionDeclaration)(es2panda_AstNode *ast); member
Des2panda_lib.cpp2492 IsFunctionDeclaration,
/arkcompiler/ets_frontend/es2panda/util/
Dhelpers.cpp480 if (func->Parent()->IsFunctionDeclaration()) { in FunctionName()
/arkcompiler/ets_frontend/es2panda/parser/transformer/
Dtransformer.cpp1752 } else if (decl->IsFunctionDeclaration() || decl->IsClassDeclaration()) { in VisitExportNamedVariable()
1761 auto name = decl->IsFunctionDeclaration() ? in VisitExportNamedVariable()
/arkcompiler/ets_frontend/es2panda/typescript/extractor/
DtypeSystem.h472 } else if (node->IsFunctionDeclaration()) { in FunctionType()