(ctx any, value []byte)
| 58 | } |
| 59 | |
| 60 | func (p *parserHelper) newLiteralBytes(ctx any, value []byte) ast.Expr { |
| 61 | return p.newLiteral(ctx, types.Bytes(value)) |
| 62 | } |
| 63 | |
| 64 | func (p *parserHelper) newLiteralInt(ctx any, value int64) ast.Expr { |
| 65 | return p.newLiteral(ctx, types.Int(value)) |
no test coverage detected