| 187 | } |
| 188 | |
| 189 | void VisitIfStmt(IfStmt* stmt) |
| 190 | { |
| 191 | Visit(stmt->getCond()); |
| 192 | |
| 193 | CoroutineASTTransformer{mASTData, mSuspendsCount, stmt->getThen(), mVarNamePrefix, stmt}; |
| 194 | |
| 195 | CoroutineASTTransformer{mASTData, mSuspendsCount, stmt->getElse(), mVarNamePrefix, stmt}; |
| 196 | } |
| 197 | |
| 198 | void VisitForStmt(ForStmt* stmt) |
| 199 | { |
nothing calls this directly
no outgoing calls
no test coverage detected