| 100 | class AddFunction : public CelFunction { |
| 101 | public: |
| 102 | AddFunction() |
| 103 | : CelFunction(CreateDescriptor()), should_return_unknown_(false) {} |
| 104 | explicit AddFunction(ShouldReturnUnknown should_return_unknown) |
| 105 | : CelFunction(CreateDescriptor()), |
| 106 | should_return_unknown_(static_cast<bool>(should_return_unknown)) {} |
no test coverage detected