| 319 | ABSL_MUST_USE_RESULT std::vector<Expr> release_args(); |
| 320 | |
| 321 | friend void swap(CallExpr& lhs, CallExpr& rhs) noexcept { |
| 322 | using std::swap; |
| 323 | swap(lhs.function_, rhs.function_); |
| 324 | swap(lhs.target_, rhs.target_); |
| 325 | swap(lhs.args_, rhs.args_); |
| 326 | } |
| 327 | |
| 328 | private: |
| 329 | friend class Expr; |