Home | History | Annotate | Download | only in ASTMatchers

Lines Matching refs:hasBody

2462 TEST(HasBody, FindsBodyOfForWhileDoLoops) {
2464 forStmt(hasBody(compoundStmt()))));
2466 forStmt(hasBody(compoundStmt()))));
2468 whileStmt(hasBody(compoundStmt()))));
2470 doStmt(hasBody(compoundStmt()))));
2472 forRangeStmt(hasBody(compoundStmt()))));