(n *pg.FromExpr)
| 1591 | } |
| 1592 | |
| 1593 | func convertFromExpr(n *pg.FromExpr) *ast.FromExpr { |
| 1594 | if n == nil { |
| 1595 | return nil |
| 1596 | } |
| 1597 | return &ast.FromExpr{ |
| 1598 | Fromlist: convertSlice(n.Fromlist), |
| 1599 | Quals: convertNode(n.Quals), |
| 1600 | } |
| 1601 | } |
| 1602 | |
| 1603 | func convertFuncCall(n *pg.FuncCall) *ast.FuncCall { |
| 1604 | if n == nil { |
no test coverage detected