| 31 | // fields). |
| 32 | ABSL_DEPRECATED("Use cel::CreateAstFromParsedExpr instead.") |
| 33 | inline absl::StatusOr<std::unique_ptr<Ast>> CreateAstFromParsedExpr( |
| 34 | const cel::expr::Expr& expr, |
| 35 | const cel::expr::SourceInfo* source_info = nullptr) { |
| 36 | return cel::CreateAstFromParsedExpr(expr, source_info); |
| 37 | } |
| 38 | |
| 39 | ABSL_DEPRECATED("Use cel::CreateAstFromParsedExpr instead.") |
| 40 | inline absl::StatusOr<std::unique_ptr<Ast>> CreateAstFromParsedExpr( |
no outgoing calls