(l *pg.List)
| 66 | } |
| 67 | |
| 68 | func convertList(l *pg.List) *ast.List { |
| 69 | out := &ast.List{} |
| 70 | for _, item := range l.Items { |
| 71 | out.Items = append(out.Items, convertNode(item)) |
| 72 | } |
| 73 | return out |
| 74 | } |
| 75 | |
| 76 | func convertSlice(nodes []*pg.Node) *ast.List { |
| 77 | out := &ast.List{} |
no test coverage detected