| 979 | } |
| 980 | |
| 981 | std::any ParserVisitor::visitUnary(CelParser::UnaryContext* ctx) { |
| 982 | return ExprToAny(factory_.NewStringConst( |
| 983 | factory_.NextId(SourceRangeFromParserRuleContext(ctx)), "<<error>>")); |
| 984 | } |
| 985 | |
| 986 | std::any ParserVisitor::visitLogicalNot(CelParser::LogicalNotContext* ctx) { |
| 987 | if (ctx->ops.size() % 2 == 0) { |
nothing calls this directly
no test coverage detected