| 1386 | } |
| 1387 | |
| 1388 | std::any ParserVisitor::visitBoolFalse(CelParser::BoolFalseContext* ctx) { |
| 1389 | return ExprToAny(factory_.NewBoolConst( |
| 1390 | factory_.NextId(SourceRangeFromParserRuleContext(ctx)), false)); |
| 1391 | } |
| 1392 | |
| 1393 | std::any ParserVisitor::visitNull(CelParser::NullContext* ctx) { |
| 1394 | return ExprToAny(factory_.NewNullConst( |
nothing calls this directly
no test coverage detected