(n *pg.Float)
| 1582 | } |
| 1583 | |
| 1584 | func convertFloat(n *pg.Float) *ast.Float { |
| 1585 | if n == nil { |
| 1586 | return nil |
| 1587 | } |
| 1588 | return &ast.Float{ |
| 1589 | Str: n.Fval, |
| 1590 | } |
| 1591 | } |
| 1592 | |
| 1593 | func convertFromExpr(n *pg.FromExpr) *ast.FromExpr { |
| 1594 | if n == nil { |
no outgoing calls
no test coverage detected