Home
last modified time | relevance | path

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

/arkcompiler/ets_frontend/es2panda/binder/
Dbinder.cpp321 void Binder::BuildVarDeclaratorId(const ir::AstNode *parent, ir::AstNode *childNode) in BuildVarDeclaratorId()
514 void Binder::ResolveReference(const ir::AstNode *parent, ir::AstNode *childNode) in ResolveReference()
672 parent->Iterate([this, parent](auto *childNode) { ResolveReference(parent, childNode); }); in ResolveReferences()
/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_frontend/es2panda/parser/transformer/
Dtransformer.cpp63 parent->UpdateSelf([this](auto *childNode) { return VisitTSNode(childNode); }, Binder()); in VisitTSNodes()
99 ir::UpdateNodes Transformer::VisitTSNode(ir::AstNode *childNode) in VisitTSNode()
/arkcompiler/ets_frontend/es2panda/typescript/extractor/
DtypeExtractor.cpp123 parent->Iterate([this, parent](const auto *childNode) { in ExtractNodesType()
128 void TypeExtractor::ExtractNodeType(const ir::AstNode *parent, const ir::AstNode *childNode) in ExtractNodeType()
/arkcompiler/ets_frontend/es2panda/parser/
DexpressionParser.cpp629 object->Iterate([this](ir::AstNode *childNode) -> void { in CheckInvalidDestructuring()