(n *pg.A_Indices)
| 136 | } |
| 137 | |
| 138 | func convertA_Indices(n *pg.A_Indices) *ast.A_Indices { |
| 139 | if n == nil { |
| 140 | return nil |
| 141 | } |
| 142 | return &ast.A_Indices{ |
| 143 | IsSlice: n.IsSlice, |
| 144 | Lidx: convertNode(n.Lidx), |
| 145 | Uidx: convertNode(n.Uidx), |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | func convertA_Indirection(n *pg.A_Indirection) *ast.A_Indirection { |
| 150 | if n == nil { |
no test coverage detected