| ... | @@ -88,7 +88,7 @@ fn do(writer: anytype, comptime value: astgen.Value, data: anytype, ctx: anytype | ... | @@ -88,7 +88,7 @@ fn do(writer: anytype, comptime value: astgen.Value, data: anytype, ctx: anytype |
| 88 | .each => { | 88 | .each => { |
| 89 | comptime assertEqual(v.args.len, 1); | 89 | comptime assertEqual(v.args.len, 1); |
| 90 | const x = search(v.args[0], data); | 90 | const x = search(v.args[0], data); |
| 91 | inline for (x) |item| try do(writer, body, item, ctx, indent, flag1); | 91 | for (x) |item| try do(writer, body, item, ctx, indent, flag1); |
| 92 | }, | 92 | }, |
| 93 | .@"if" => { | 93 | .@"if" => { |
| 94 | comptime assertEqual(v.args.len, 1); | 94 | comptime assertEqual(v.args.len, 1); |