Visit a parse tree produced by CELParser#start.
(ctx *gen.StartContext)
| 463 | |
| 464 | // Visit a parse tree produced by CELParser#start. |
| 465 | func (p *parser) VisitStart(ctx *gen.StartContext) any { |
| 466 | return p.Visit(ctx.Expr()) |
| 467 | } |
| 468 | |
| 469 | // Visit a parse tree produced by CELParser#expr. |
| 470 | func (p *parser) VisitExpr(ctx *gen.ExprContext) any { |