| 1381 | } |
| 1382 | |
| 1383 | std::any ParserVisitor::visitBoolTrue(CelParser::BoolTrueContext* ctx) { |
| 1384 | return ExprToAny(factory_.NewBoolConst( |
| 1385 | factory_.NextId(SourceRangeFromParserRuleContext(ctx)), true)); |
| 1386 | } |
| 1387 | |
| 1388 | std::any ParserVisitor::visitBoolFalse(CelParser::BoolFalseContext* ctx) { |
| 1389 | return ExprToAny(factory_.NewBoolConst( |
nothing calls this directly
no test coverage detected