| 145 | class SinkFunction : public CelFunction { |
| 146 | public: |
| 147 | explicit SinkFunction(CelValue::Type type, bool is_strict = true) |
| 148 | : CelFunction(CreateDescriptor(type, is_strict)) {} |
| 149 | |
| 150 | static CelFunctionDescriptor CreateDescriptor(CelValue::Type type, |
| 151 | bool is_strict = true) { |
nothing calls this directly
no test coverage detected