Visit a parse tree produced by CELParser#BoolTrue.
(ctx *gen.BoolTrueContext)
| 830 | |
| 831 | // Visit a parse tree produced by CELParser#BoolTrue. |
| 832 | func (p *parser) VisitBoolTrue(ctx *gen.BoolTrueContext) any { |
| 833 | return p.helper.newLiteralBool(ctx, true) |
| 834 | } |
| 835 | |
| 836 | // Visit a parse tree produced by CELParser#BoolFalse. |
| 837 | func (p *parser) VisitBoolFalse(ctx *gen.BoolFalseContext) any { |