| 142 | //----------------------------------------------------------------------------- |
| 143 | |
| 144 | CXXTryStmt* Try(const Stmt* tryBody, CXXCatchStmt* catchAllBody) |
| 145 | { |
| 146 | return CXXTryStmt::Create( |
| 147 | GetGlobalAST(), {}, const_cast<CompoundStmt*>(dyn_cast_or_null<CompoundStmt>(tryBody)), {catchAllBody}); |
| 148 | } |
| 149 | //----------------------------------------------------------------------------- |
| 150 | |
| 151 | CXXCatchStmt* Catch(ArrayRef<Stmt*> body) |
no outgoing calls
no test coverage detected