Lines Matching refs:childNode
3376 parent->Iterate([this, hasSuperCall](auto *childNode) {
3377 FindSuperCallInCtorChildNode(childNode, hasSuperCall);
3381 void ParserImpl::FindSuperCallInCtorChildNode(const ir::AstNode *childNode, bool *hasSuperCall)
3386 switch (childNode->Type()) {
3388 if (childNode->AsCallExpression()->Callee()->IsSuperExpression()) {
3401 FindSuperCall(childNode, hasSuperCall);
3475 parent->Iterate([this, hasThisOrSuperReference](auto *childNode) {
3476 FindThisOrSuperReferenceInChildNode(childNode, hasThisOrSuperReference);
3480 void ParserImpl::FindThisOrSuperReferenceInChildNode(const ir::AstNode *childNode, bool *hasThisOrSuperReference)
3487 switch (childNode->Type()) {
3500 FindThisOrSuperReference(childNode, hasThisOrSuperReference);