| 2026 | } |
| 2027 | |
| 2028 | FunctionPtr forceAtFunction ( const FunctionPtr & func, const LineInfo & at ) { |
| 2029 | LocationSwapVisitor swapAt(at); |
| 2030 | return func->visit(swapAt); |
| 2031 | } |
| 2032 | |
| 2033 | ExpressionPtr forceGenerated ( ExpressionPtr expr, bool setGenerated ) { |
| 2034 | SetGeneratedVisitor setGen(setGenerated); |
no test coverage detected