| 445 | //----------------------------------------------------------------------------- |
| 446 | |
| 447 | ImplicitCastExpr* CastLToRValue(const VarDecl* vd) |
| 448 | { |
| 449 | return ImplicitCastExpr::Create( |
| 450 | GetGlobalAST(), vd->getType(), CK_LValueToRValue, mkDeclRefExpr(vd), {}, VK_LValue, {}); |
| 451 | } |
| 452 | //----------------------------------------------------------------------------- |
| 453 | |
| 454 | CXXMemberCallExpr* CallMemberFun(Expr* memExpr, QualType retType /*, const std::vector<Expr*>& params*/) |
no test coverage detected