| 67 | class ConstFunction : public CelFunction { |
| 68 | public: |
| 69 | explicit ConstFunction(const CelValue& value, absl::string_view name) |
| 70 | : CelFunction(CreateDescriptor(name)), value_(value) {} |
| 71 | |
| 72 | static CelFunctionDescriptor CreateDescriptor(absl::string_view name) { |
| 73 | return CelFunctionDescriptor{name, false, {}}; |
nothing calls this directly
no test coverage detected