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