| 85 | class FunctionImpl : public CelFunction { |
| 86 | public: |
| 87 | FunctionImpl(absl::string_view name, FunctionResponse response, |
| 88 | CelValue::Type type = CelValue::Type::kString) |
| 89 | : CelFunction(CreateDescriptor(name, type)), response_(response) {} |
| 90 | |
| 91 | absl::Status Evaluate(absl::Span<const CelValue> arguments, CelValue* result, |
| 92 | Arena* arena) const override { |
nothing calls this directly
no test coverage detected