Home
last modified time | relevance | path

Searched defs:childNode (Results 1 – 22 of 22) sorted by relevance

/arkcompiler/ets_frontend/ets2panda/varbinder/
DTypedBinder.cpp66 void TypedBinder::HandleCustomNodes(ir::AstNode *childNode) in HandleCustomNodes()
Dvarbinder.cpp299 void VarBinder::BuildVarDeclaratorId(ir::AstNode *childNode) in BuildVarDeclaratorId()
534 void VarBinder::ResolveReference(ir::AstNode *childNode) in ResolveReference()
630 parent->Iterate([this](auto *childNode) { ResolveReference(childNode); }); in ResolveReferences()
Dvarbinder.h237 virtual void HandleCustomNodes(ir::AstNode *childNode) in HandleCustomNodes()
DETSBinder.cpp755 void ETSBinder::HandleCustomNodes(ir::AstNode *childNode) in HandleCustomNodes()
/arkcompiler/ets_frontend/es2panda/binder/
Dbinder.cpp422 void Binder::BuildVarDeclaratorId(const ir::AstNode *parent, ir::AstNode *childNode) in BuildVarDeclaratorId()
655 void Binder::ResolveReference(const ir::AstNode *parent, ir::AstNode *childNode) in ResolveReference()
862 parent->Iterate([this, parent](auto *childNode) { ResolveReference(parent, childNode); }); in ResolveReferences()
1029 parentNode->UpdateSelf([=](auto *childNode) { in ReplaceConstReferenceWithInitialization()
1058 ClassTdz::ClassTdz(const ir::AstNode *parent, const ir::AstNode *childNode, Scope *scope) in ClassTdz()
/arkcompiler/ets_frontend/es2panda/typescript/core/
Dhelpers.cpp225 parent->Iterate([this, searchVar, &found](const ir::AstNode *childNode) -> void { in IsVariableUsedInConditionBody()
250 parent->Iterate([this, searchVar, &found](const ir::AstNode *childNode) -> void { in FindVariableInBinaryExpressionChain()
Dfunction.cpp634 parent->Iterate([this, returnTypes](ir::AstNode *childNode) -> void { in CollectTypesFromReturnStatements()
658 parent->Iterate([&found](const ir::AstNode *childNode) -> void { in SearchForReturnOrThrow()
DdestructuringContext.cpp423 parent->Iterate([type](ir::AstNode *childNode) -> void { in SetParameterType()
/arkcompiler/ets_frontend/ets2panda/checker/ts/
Dhelpers.cpp225 parent->Iterate([this, searchVar, &found](ir::AstNode *childNode) -> void { in IsVariableUsedInConditionBody()
250 parent->Iterate([this, searchVar, &found](ir::AstNode *childNode) -> void { in FindVariableInBinaryExpressionChain()
Dfunction.cpp615 parent->Iterate([this, returnTypes](ir::AstNode *childNode) -> void { in CollectTypesFromReturnStatements()
639 parent->Iterate([&found](ir::AstNode *childNode) -> void { in SearchForReturnOrThrow()
DdestructuringContext.cpp424 parent->Iterate([type](ir::AstNode *childNode) -> void { in SetParameterType()
/arkcompiler/ets_runtime/test/aottest/classstatic/
Dclassstatic.ts295 public childNode : Node; property in Node
/arkcompiler/ets_frontend/es2panda/parser/transformer/
Dtransformer.cpp98 parent->UpdateSelf([this](auto *childNode) { return VisitTSNode(childNode); }, Binder()); in VisitTSNodes()
196 ir::UpdateNodes Transformer::VisitTSNode(ir::AstNode *childNode) in VisitTSNode()
635 parent->Iterate([this, hasSuperCall](auto *childNode) { in FindSuperCall()
640 void Transformer::FindSuperCallInCtorChildNode(const ir::AstNode *childNode, bool *hasSuperCall) in FindSuperCallInCtorChildNode()
1287 parent->Iterate([this, hasprivateIdentifier](auto *childNode) { in FindPrivateIdentifierInDecorator()
1292 void Transformer::FindPrivateIdentifierInChildNode(const ir::AstNode *childNode, bool *hasprivateId… in FindPrivateIdentifierInChildNode()
2605 …parent->Iterate([this, parent, passed](auto *childNode) { CheckTransformedAstNode(parent, childNod… in CheckTransformedAstNodes()
2608 void Transformer::CheckTransformedAstNode(const ir::AstNode *parent, ir::AstNode *childNode, bool *… in CheckTransformedAstNode()
2634 …parent->Iterate([this, parentScope](auto *childNode) { ResetParentScopeForAstNode(childNode, paren… in ResetParentScopeForAstNodes()
2637 void Transformer::ResetParentScopeForAstNode(ir::AstNode *childNode, binder::Scope *parentScope) co… in ResetParentScopeForAstNode()
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/
Dheap_sampling.cpp192 struct SamplingNode *childNode = nullptr; in FindOrAddNode() local
/arkcompiler/ets_frontend/es2panda/compiler/core/
Dfunction.cpp41 currentNode->Iterate([&lastNode](auto *childNode) { in FindLastStatement()
/arkcompiler/ets_frontend/ets2panda/checker/ets/
DaliveAnalyzer.cpp57 node->Iterate([this](auto *childNode) { AnalyzeNode(childNode); }); in AnalyzeNodes()
Dfunction.cpp1349 node->Iterate([this, var](ir::AstNode *childNode) { CheckCapturedVariable(childNode, var); }); in CheckCapturedVariableInSubnodes()
1947 node->Iterate([this, &proxyParams, &mergedTargetReferences](ir::AstNode *childNode) { in ReplaceIdentifierReferencesInProxyMethod()
Dobject.cpp932 …[this, classVar, &initialized](ir::AstNode *childNode) { FindAssignment(childNode, classVar, initi… in FindAssignments()
/arkcompiler/ets_frontend/es2panda/typescript/extractor/
DtypeExtractor.cpp149 parent->Iterate([this, parent](const auto *childNode) { in ExtractNodesType()
154 void TypeExtractor::ExtractNodeType(const ir::AstNode *parent, const ir::AstNode *childNode) in ExtractNodeType()
/arkcompiler/ets_frontend/es2panda/parser/
DparserImpl.cpp3279 parent->Iterate([this, hasSuperCall](auto *childNode) { in FindSuperCall()
3284 void ParserImpl::FindSuperCallInCtorChildNode(const ir::AstNode *childNode, bool *hasSuperCall) in FindSuperCallInCtorChildNode()
3378 parent->Iterate([this, hasThisOrSuperReference](auto *childNode) { in FindThisOrSuperReference()
3383 void ParserImpl::FindThisOrSuperReferenceInChildNode(const ir::AstNode *childNode, bool *hasThisOrS… in FindThisOrSuperReferenceInChildNode()
DexpressionParser.cpp675 object->Iterate([this](ir::AstNode *childNode) -> void { in CheckInvalidDestructuring()
/arkcompiler/ets_frontend/ets2panda/parser/
DexpressionParser.cpp478 object->Iterate([this](ir::AstNode *childNode) -> void { in CheckInvalidDestructuring()