Home
last modified time | relevance | path

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

/arkcompiler/ets_frontend/es2panda/binder/
Dbinder.cpp406 void Binder::BuildVarDeclaratorId(const ir::AstNode *parent, ir::AstNode *childNode) in BuildVarDeclaratorId()
626 void Binder::ResolveReference(const ir::AstNode *parent, ir::AstNode *childNode) in ResolveReference()
806 parent->Iterate([this, parent](auto *childNode) { ResolveReference(parent, childNode); }); in ResolveReferences()
973 parentNode->UpdateSelf([=](auto *childNode) { in ReplaceConstReferenceWithInitialization()
/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.cpp636 parent->Iterate([this, returnTypes](ir::AstNode *childNode) -> void { in CollectTypesFromReturnStatements()
660 parent->Iterate([&found](const ir::AstNode *childNode) -> void { in SearchForReturnOrThrow()
DdestructuringContext.cpp423 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_runtime/ecmascript/dfx/hprof/
Dheap_sampling.cpp192 struct SamplingNode *childNode = nullptr; in FindOrAddNode() local
/arkcompiler/ets_frontend/es2panda/parser/transformer/
Dtransformer.cpp97 parent->UpdateSelf([this](auto *childNode) { return VisitTSNode(childNode); }, Binder()); in VisitTSNodes()
195 ir::UpdateNodes Transformer::VisitTSNode(ir::AstNode *childNode) in VisitTSNode()
2122 …parent->Iterate([this, parent, passed](auto *childNode) { CheckTransformedAstNode(parent, childNod… in CheckTransformedAstNodes()
2125 void Transformer::CheckTransformedAstNode(const ir::AstNode *parent, ir::AstNode *childNode, bool *… in CheckTransformedAstNode()
2151 parent->Iterate([this](auto *childNode) { ResetParentScopeForAstNode(childNode); }); in ResetParentScopeForAstNodes()
/arkcompiler/ets_frontend/es2panda/typescript/extractor/
DtypeExtractor.cpp146 parent->Iterate([this, parent](const auto *childNode) { in ExtractNodesType()
151 void TypeExtractor::ExtractNodeType(const ir::AstNode *parent, const ir::AstNode *childNode) in ExtractNodeType()
/arkcompiler/ets_frontend/es2panda/parser/
DparserImpl.cpp3049 parent->Iterate([this, hasSuperCall](auto *childNode) { in FindSuperCallInConstructor()
3054 void ParserImpl::FindSuperCallInConstructorChildNode(const ir::AstNode *childNode, bool *hasSuperCa… in FindSuperCallInConstructorChildNode()
DexpressionParser.cpp647 object->Iterate([this](ir::AstNode *childNode) -> void { in CheckInvalidDestructuring()