| 317 | } |
| 318 | |
| 319 | absl::Status ConstExprFromProto(const ExprProto& proto, |
| 320 | const ConstantProto& const_proto, |
| 321 | Expr& expr) { |
| 322 | expr.Clear(); |
| 323 | expr.set_id(proto.id()); |
| 324 | return ConstantFromProto(const_proto, expr.mutable_const_expr()); |
| 325 | } |
| 326 | |
| 327 | absl::Status IdentExprFromProto(const ExprProto& proto, |
| 328 | const ExprProto::Ident& ident_proto, |
nothing calls this directly
no test coverage detected