Lines Matching defs:hasSuperCall
628 bool hasSuperCall = false;
629 FindSuperCallInCtorChildNode(*iter, &hasSuperCall);
630 if (hasSuperCall) {
638 void Transformer::FindSuperCall(const ir::AstNode *parent, bool *hasSuperCall)
640 parent->Iterate([this, hasSuperCall](auto *childNode) {
641 FindSuperCallInCtorChildNode(childNode, hasSuperCall);
645 void Transformer::FindSuperCallInCtorChildNode(const ir::AstNode *childNode, bool *hasSuperCall)
647 if (*hasSuperCall) {
653 *hasSuperCall = true;
665 FindSuperCall(childNode, hasSuperCall);