| 149 | //----------------------------------------------------------------------------- |
| 150 | |
| 151 | CXXCatchStmt* Catch(ArrayRef<Stmt*> body) |
| 152 | { |
| 153 | CompoundStmt* compStmt = mkCompoundStmt(body); |
| 154 | |
| 155 | return new(GetGlobalAST()) CXXCatchStmt({}, nullptr, compStmt); |
| 156 | } |
| 157 | //----------------------------------------------------------------------------- |
| 158 | |
| 159 | CXXCatchStmt* Catch(Stmt* body) |
no test coverage detected