| 331 | } |
| 332 | protected: |
| 333 | virtual void preVisit ( ExprCopy * expr ) override { |
| 334 | Visitor::preVisit(expr); |
| 335 | cmresDest[expr->right] = expr->left; |
| 336 | } |
| 337 | virtual void preVisit ( ExprMove * expr ) override { |
| 338 | Visitor::preVisit(expr); |
| 339 | cmresDest[expr->right] = expr->left; |
nothing calls this directly
no test coverage detected