Visit a parse tree produced by CELParser#Bytes.
(ctx *gen.BytesContext)
| 816 | |
| 817 | // Visit a parse tree produced by CELParser#Bytes. |
| 818 | func (p *parser) VisitBytes(ctx *gen.BytesContext) any { |
| 819 | b := []byte(p.unquote(ctx, ctx.GetTok().GetText()[1:], true)) |
| 820 | return p.helper.newLiteralBytes(ctx, b) |
| 821 | } |
| 822 | |
| 823 | // Visit a parse tree produced by CELParser#BoolTrue. |
| 824 | func (p *parser) VisitBoolTrue(ctx *gen.BoolTrueContext) any { |
no test coverage detected