| author | |
| committer | |
| log | 212aa717d73866863c593033a1c8bd3c853150ed |
| tree | d7c88acc5138c7a4146c8e3f55d6566aa0129378 |
| parent | 75efb736ce704fc43bdbe2410989c2b275d855e6 |
1 files changed, 4 insertions(+), 1 deletions(-)
src/reduce/Walk.zig+4-1| ... | ... | @@ -165,7 +165,10 @@ fn walkMember(w: *Walk, decl: Ast.Node.Index) Error!void { |
| 165 | 165 | .container_field_init, |
| 166 | 166 | .container_field_align, |
| 167 | 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 | 173 | .@"comptime" => { |
| 171 | 174 | try w.transformations.append(.{ .delete_node = decl }); |