(n *pg.A_Expr)
| 123 | } |
| 124 | |
| 125 | func convertA_Expr(n *pg.A_Expr) *ast.A_Expr { |
| 126 | if n == nil { |
| 127 | return nil |
| 128 | } |
| 129 | return &ast.A_Expr{ |
| 130 | Kind: ast.A_Expr_Kind(n.Kind), |
| 131 | Name: convertSlice(n.Name), |
| 132 | Lexpr: convertNode(n.Lexpr), |
| 133 | Rexpr: convertNode(n.Rexpr), |
| 134 | Location: int(n.Location), |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | func convertA_Indices(n *pg.A_Indices) *ast.A_Indices { |
| 139 | if n == nil { |
no test coverage detected