| 109 | //----------------------------------------------------------------------------- |
| 110 | |
| 111 | UnaryOperator* AddrOf(const Expr* stmt) |
| 112 | { |
| 113 | return mkUnaryOperator(stmt, UO_AddrOf, stmt->getType()); |
| 114 | } |
| 115 | //----------------------------------------------------------------------------- |
| 116 | |
| 117 | CallExpr* Call(const FunctionDecl* fd, ArrayRef<Expr*> params) |
no test coverage detected