(n *pg.A_ArrayExpr)
| 86 | } |
| 87 | |
| 88 | func convertA_ArrayExpr(n *pg.A_ArrayExpr) *ast.A_ArrayExpr { |
| 89 | if n == nil { |
| 90 | return nil |
| 91 | } |
| 92 | return &ast.A_ArrayExpr{ |
| 93 | Elements: convertSlice(n.Elements), |
| 94 | Location: int(n.Location), |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | func convertA_Const(n *pg.A_Const) *ast.A_Const { |
| 99 | if n == nil { |
no test coverage detected