(ctx any, value int64)
| 62 | } |
| 63 | |
| 64 | func (p *parserHelper) newLiteralInt(ctx any, value int64) ast.Expr { |
| 65 | return p.newLiteral(ctx, types.Int(value)) |
| 66 | } |
| 67 | |
| 68 | func (p *parserHelper) newLiteralUint(ctx any, value uint64) ast.Expr { |
| 69 | return p.newLiteral(ctx, types.Uint(value)) |
no test coverage detected