Visit a parse tree produced by CELParser#Bytes.
(ctx *gen.BytesContext)
| 824 | |
| 825 | // Visit a parse tree produced by CELParser#Bytes. |
| 826 | func (p *parser) VisitBytes(ctx *gen.BytesContext) any { |
| 827 | b := []byte(p.unquote(ctx, ctx.GetTok().GetText()[1:], true)) |
| 828 | return p.helper.newLiteralBytes(ctx, b) |
| 829 | } |
| 830 | |
| 831 | // Visit a parse tree produced by CELParser#BoolTrue. |
| 832 | func (p *parser) VisitBoolTrue(ctx *gen.BoolTrueContext) any { |
no test coverage detected