Visit a parse tree produced by CELParser#String.
(ctx *gen.StringContext)
| 818 | |
| 819 | // Visit a parse tree produced by CELParser#String. |
| 820 | func (p *parser) VisitString(ctx *gen.StringContext) any { |
| 821 | s := p.unquote(ctx, ctx.GetTok().GetText(), false) |
| 822 | return p.helper.newLiteralString(ctx, s) |
| 823 | } |
| 824 | |
| 825 | // Visit a parse tree produced by CELParser#Bytes. |
| 826 | func (p *parser) VisitBytes(ctx *gen.BytesContext) any { |
no test coverage detected