| 1000 | }; |
| 1001 | |
| 1002 | void replaceRef2Ptr ( ExpressionPtr expr, const string & name ) { |
| 1003 | Ref2PtrVisitor r2ptr(name); |
| 1004 | expr->visit(r2ptr); |
| 1005 | } |
| 1006 | |
| 1007 | // replace break and continue with 'goto label' for the specific loop |
| 1008 |
no test coverage detected