| 163 | //----------------------------------------------------------------------------- |
| 164 | |
| 165 | CXXThrowExpr* Throw(const Expr* expr) |
| 166 | { |
| 167 | return new(GetGlobalAST()) CXXThrowExpr(const_cast<Expr*>(expr), VoidTy(), {}, false); |
| 168 | } |
| 169 | //----------------------------------------------------------------------------- |
| 170 | |
| 171 | UnaryExprOrTypeTraitExpr* Sizeof(QualType toType) |
no test coverage detected