| ... | @@ -33,7 +33,7 @@ pub fn parse(comptime input: []const u8) astgen.Value { | ... | @@ -33,7 +33,7 @@ pub fn parse(comptime input: []const u8) astgen.Value { |
| 33 | } | 33 | } |
| 34 | | 34 | |
| 35 | pub fn compile(writer: anytype, comptime value: astgen.Value, data: anytype) !void { | 35 | pub fn compile(writer: anytype, comptime value: astgen.Value, data: anytype) !void { |
| 36 | return try do(writer, value, data, data, 0, false); | 36 | try do(writer, value, data, data, 0, false); |
| 37 | } | 37 | } |
| 38 | | 38 | |
| 39 | fn do(writer: anytype, comptime value: astgen.Value, data: anytype, ctx: anytype, indent: usize, flag1: bool) anyerror!void { | 39 | fn do(writer: anytype, comptime value: astgen.Value, data: anytype, ctx: anytype, indent: usize, flag1: bool) anyerror!void { |