| 2617 | } |
| 2618 | |
| 2619 | void VisitContinueStmt(ContinueStmt* stmt) |
| 2620 | { |
| 2621 | found = true; |
| 2622 | |
| 2623 | ReplaceNode(mPrevStmt, stmt, Goto(mContinueLabel)); |
| 2624 | } |
| 2625 | |
| 2626 | void VisitStmt(Stmt* stmt) |
| 2627 | { |
nothing calls this directly
no test coverage detected