| 173 | } |
| 174 | |
| 175 | void VisitDoStmt(DoStmt* stmt) |
| 176 | { |
| 177 | Visit(stmt->getCond()); |
| 178 | |
| 179 | CoroutineASTTransformer{mASTData, mSuspendsCount, stmt->getBody(), mVarNamePrefix, stmt}; |
| 180 | } |
| 181 | |
| 182 | void VisitWhileStmt(WhileStmt* stmt) |
| 183 | { |
nothing calls this directly
no outgoing calls
no test coverage detected