| ... | @@ -165,7 +165,10 @@ fn walkMember(w: *Walk, decl: Ast.Node.Index) Error!void { | ... | @@ -165,7 +165,10 @@ fn walkMember(w: *Walk, decl: Ast.Node.Index) Error!void { |
| 165 | .container_field_init, | 165 | .container_field_init, |
| 166 | .container_field_align, | 166 | .container_field_align, |
| 167 | .container_field, | 167 | .container_field, |
| 168 | => try walkContainerField(w, ast.fullContainerField(decl).?), | 168 | => { |
| | 169 | try w.transformations.append(.{ .delete_node = decl }); |
| | 170 | try walkContainerField(w, ast.fullContainerField(decl).?); |
| | 171 | }, |
| 169 | | 172 | |
| 170 | .@"comptime" => { | 173 | .@"comptime" => { |
| 171 | try w.transformations.append(.{ .delete_node = decl }); | 174 | try w.transformations.append(.{ .delete_node = decl }); |