| 248 | } |
| 249 | |
| 250 | bool Accumulator::IsEmpty() const { |
| 251 | return !unknown_present_ && attribute_set_.empty() && |
| 252 | function_result_set_.empty(); |
| 253 | } |
| 254 | |
| 255 | cel::UnknownValue Accumulator::Build() && { |
| 256 | return cel::UnknownValue( |
no test coverage detected