Visit a parse tree produced by CELParser#String.
(ctx *gen.StringContext)
| 810 | |
| 811 | // Visit a parse tree produced by CELParser#String. |
| 812 | func (p *parser) VisitString(ctx *gen.StringContext) any { |
| 813 | s := p.unquote(ctx, ctx.GetTok().GetText(), false) |
| 814 | return p.helper.newLiteralString(ctx, s) |
| 815 | } |
| 816 | |
| 817 | // Visit a parse tree produced by CELParser#Bytes. |
| 818 | func (p *parser) VisitBytes(ctx *gen.BytesContext) any { |
no test coverage detected