Visit a parse tree produced by CELParser#Null.
(ctx *gen.NullContext)
| 840 | |
| 841 | // Visit a parse tree produced by CELParser#Null. |
| 842 | func (p *parser) VisitNull(ctx *gen.NullContext) any { |
| 843 | return p.helper.exprFactory.NewLiteral(p.helper.newID(ctx), types.NullValue) |
| 844 | } |
| 845 | |
| 846 | func (p *parser) visitExprList(ctx gen.IExprListContext) []ast.Expr { |
| 847 | if ctx == nil { |
no test coverage detected