| 409 | receiver_style_(receiver_style) {} |
| 410 | |
| 411 | absl::StatusOr<ResolveResult> Resolve(ExecutionFrameBase& frame, |
| 412 | absl::Span<const Value> input) const { |
| 413 | return ResolveLazy(input, name_, receiver_style_, providers_, frame); |
| 414 | } |
| 415 | |
| 416 | private: |
| 417 | std::vector<cel::FunctionRegistry::LazyOverload> providers_; |
nothing calls this directly
no test coverage detected