Lines Matching defs:hasSuperCall
3359 bool hasSuperCall = false;
3360 FindSuperCall(ctor->Function()->Body()->AsBlockStatement(), &hasSuperCall);
3361 if (hasSuperCall) {
3374 void ParserImpl::FindSuperCall(const ir::AstNode *parent, bool *hasSuperCall)
3376 parent->Iterate([this, hasSuperCall](auto *childNode) {
3377 FindSuperCallInCtorChildNode(childNode, hasSuperCall);
3381 void ParserImpl::FindSuperCallInCtorChildNode(const ir::AstNode *childNode, bool *hasSuperCall)
3383 if (*hasSuperCall) {
3389 *hasSuperCall = true;
3401 FindSuperCall(childNode, hasSuperCall);