(n *pg.A_Indirection)
| 147 | } |
| 148 | |
| 149 | func convertA_Indirection(n *pg.A_Indirection) *ast.A_Indirection { |
| 150 | if n == nil { |
| 151 | return nil |
| 152 | } |
| 153 | return &ast.A_Indirection{ |
| 154 | Arg: convertNode(n.Arg), |
| 155 | Indirection: convertSlice(n.Indirection), |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | func convertA_Star(n *pg.A_Star) *ast.A_Star { |
| 160 | if n == nil { |
no test coverage detected