| 1490 | } |
| 1491 | |
| 1492 | bool ExprInvoke::isCopyOrMove() const { |
| 1493 | auto blockT = arguments[0]->type; |
| 1494 | return blockT->firstType && blockT->firstType->isRefType() && !blockT->firstType->ref; |
| 1495 | } |
| 1496 | |
| 1497 | ExpressionPtr SimulateVisitor::visit(ExprInvoke * expr) { |
| 1498 | const auto &at = expr->at; |
no test coverage detected