(ctx any, value string)
| 54 | } |
| 55 | |
| 56 | func (p *parserHelper) newLiteralString(ctx any, value string) ast.Expr { |
| 57 | return p.newLiteral(ctx, types.String(value)) |
| 58 | } |
| 59 | |
| 60 | func (p *parserHelper) newLiteralBytes(ctx any, value []byte) ast.Expr { |
| 61 | return p.newLiteral(ctx, types.Bytes(value)) |
no test coverage detected