| /arkcompiler/ets_frontend/ets2panda/varbinder/ |
| D | TypedBinder.cpp | 66 void TypedBinder::HandleCustomNodes(ir::AstNode *childNode) in HandleCustomNodes()
|
| D | varbinder.cpp | 299 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()
|
| D | varbinder.h | 237 virtual void HandleCustomNodes(ir::AstNode *childNode) in HandleCustomNodes()
|
| D | ETSBinder.cpp | 755 void ETSBinder::HandleCustomNodes(ir::AstNode *childNode) in HandleCustomNodes()
|
| /arkcompiler/ets_frontend/es2panda/binder/ |
| D | binder.cpp | 422 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/ |
| D | helpers.cpp | 225 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()
|
| D | function.cpp | 634 parent->Iterate([this, returnTypes](ir::AstNode *childNode) -> void { in CollectTypesFromReturnStatements() 658 parent->Iterate([&found](const ir::AstNode *childNode) -> void { in SearchForReturnOrThrow()
|
| D | destructuringContext.cpp | 423 parent->Iterate([type](ir::AstNode *childNode) -> void { in SetParameterType()
|
| /arkcompiler/ets_frontend/ets2panda/checker/ts/ |
| D | helpers.cpp | 225 parent->Iterate([this, searchVar, &found](ir::AstNode *childNode) -> void { in IsVariableUsedInConditionBody() 250 parent->Iterate([this, searchVar, &found](ir::AstNode *childNode) -> void { in FindVariableInBinaryExpressionChain()
|
| D | function.cpp | 615 parent->Iterate([this, returnTypes](ir::AstNode *childNode) -> void { in CollectTypesFromReturnStatements() 639 parent->Iterate([&found](ir::AstNode *childNode) -> void { in SearchForReturnOrThrow()
|
| D | destructuringContext.cpp | 424 parent->Iterate([type](ir::AstNode *childNode) -> void { in SetParameterType()
|
| /arkcompiler/ets_runtime/test/aottest/classstatic/ |
| D | classstatic.ts | 295 public childNode : Node; property in Node
|
| /arkcompiler/ets_frontend/es2panda/parser/transformer/ |
| D | transformer.cpp | 98 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/ |
| D | heap_sampling.cpp | 192 struct SamplingNode *childNode = nullptr; in FindOrAddNode() local
|
| /arkcompiler/ets_frontend/es2panda/compiler/core/ |
| D | function.cpp | 41 currentNode->Iterate([&lastNode](auto *childNode) { in FindLastStatement()
|
| /arkcompiler/ets_frontend/ets2panda/checker/ets/ |
| D | aliveAnalyzer.cpp | 57 node->Iterate([this](auto *childNode) { AnalyzeNode(childNode); }); in AnalyzeNodes()
|
| D | function.cpp | 1349 node->Iterate([this, var](ir::AstNode *childNode) { CheckCapturedVariable(childNode, var); }); in CheckCapturedVariableInSubnodes() 1947 node->Iterate([this, &proxyParams, &mergedTargetReferences](ir::AstNode *childNode) { in ReplaceIdentifierReferencesInProxyMethod()
|
| D | object.cpp | 932 …[this, classVar, &initialized](ir::AstNode *childNode) { FindAssignment(childNode, classVar, initi… in FindAssignments()
|
| /arkcompiler/ets_frontend/es2panda/typescript/extractor/ |
| D | typeExtractor.cpp | 149 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/ |
| D | parserImpl.cpp | 3279 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()
|
| D | expressionParser.cpp | 675 object->Iterate([this](ir::AstNode *childNode) -> void { in CheckInvalidDestructuring()
|
| /arkcompiler/ets_frontend/ets2panda/parser/ |
| D | expressionParser.cpp | 478 object->Iterate([this](ir::AstNode *childNode) -> void { in CheckInvalidDestructuring()
|