| ... | @@ -43,10 +43,10 @@ pub fn print(sc: *const ScannedConfig, w: *Writer) Writer.Error!void { | ... | @@ -43,10 +43,10 @@ pub fn print(sc: *const ScannedConfig, w: *Writer) Writer.Error!void { |
| 43 | | 43 | |
| 44 | { | 44 | { |
| 45 | var tf = try s.beginTupleField("path_deps", .{}); | 45 | var tf = try s.beginTupleField("path_deps", .{}); |
| 46 | for (c.path_deps_base, c.path_deps_sub) |base, sub| { | 46 | for (c.path_deps) |path_dep| { |
| 47 | var sf = try tf.beginStructField(.{}); | 47 | var sf = try tf.beginStructField(.{}); |
| 48 | try sf.field("base", @tagName(base), .{}); | 48 | try sf.field("base", @tagName(path_dep.flags.base), .{}); |
| 49 | try sf.field("sub", sub.slice(c), .{}); | 49 | try sf.field("sub", path_dep.sub.slice(c), .{}); |
| 50 | try sf.end(); | 50 | try sf.end(); |
| 51 | } | 51 | } |
| 52 | try tf.end(); | 52 | try tf.end(); |