Visit a parse tree produced by CELParser#start.
(ctx *gen.StartContext)
| 471 | |
| 472 | // Visit a parse tree produced by CELParser#start. |
| 473 | func (p *parser) VisitStart(ctx *gen.StartContext) any { |
| 474 | return p.Visit(ctx.Expr()) |
| 475 | } |
| 476 | |
| 477 | // Visit a parse tree produced by CELParser#expr. |
| 478 | func (p *parser) VisitExpr(ctx *gen.ExprContext) any { |