| 2021 | }; |
| 2022 | |
| 2023 | ExpressionPtr forceAt ( ExpressionPtr expr, const LineInfo & at ) { |
| 2024 | LocationSwapVisitor swapAt(at); |
| 2025 | return expr->visit(swapAt); |
| 2026 | } |
| 2027 | |
| 2028 | FunctionPtr forceAtFunction ( const FunctionPtr & func, const LineInfo & at ) { |
| 2029 | LocationSwapVisitor swapAt(at); |
no test coverage detected