Simulate an expression subtree via the visitor walk
| 162 | |
| 163 | // Simulate an expression subtree via the visitor walk |
| 164 | SimNode * simulateExpression ( Expression * expr ) { |
| 165 | expr->visit(*this); |
| 166 | return getE(expr); |
| 167 | } |
| 168 | |
| 169 | // --- Helper methods --- |
| 170 | vector<SimNode *> simulateExprMakeVariant(const ExprMakeVariant *mkv); |
no test coverage detected