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