| 351 | overloads_(std::move(overloads)) {} |
| 352 | |
| 353 | absl::StatusOr<ResolveResult> ResolveFunction( |
| 354 | absl::Span<const cel::Value> input_args, |
| 355 | const ExecutionFrame* frame) const override { |
| 356 | return ResolveStatic(input_args, overloads_); |
| 357 | } |
| 358 | |
| 359 | private: |
| 360 | std::vector<cel::FunctionOverloadReference> overloads_; |
nothing calls this directly
no test coverage detected