| 78 | }; |
| 79 | |
| 80 | void verifyGenerated ( ExpressionPtr expr ) { |
| 81 | (void)expr; |
| 82 | #if LOG_GENERATED |
| 83 | LOG(LogLevel::trace) << "VERIFY:\n" << *expr << "\n"; |
| 84 | #endif |
| 85 | #if VERIFY_GENERATED |
| 86 | CheckLineInfoVisitor vis; |
| 87 | expr->visit(vis); |
| 88 | #endif |
| 89 | } |
| 90 | |
| 91 | ExpressionPtr genComment ( const string & comment ) { |
| 92 | auto call = new ExprCall(LineInfo(), "print"); |
no test coverage detected