Format additional predefined attribute infos

This commit is contained in:
ktkk 2026-07-05 00:25:25 +02:00
parent 9af766e495
commit f8b1f968e0
4 changed files with 273 additions and 19 deletions

View file

@ -56,7 +56,6 @@ pub fn indentedFormat(
w: *std.Io.Writer,
depth: usize,
indent: u8,
allocator: std.mem.Allocator,
constant_pool: []const ?ConstantPoolInfo,
) std.Io.Writer.Error!void {
try w.splatByteAll(' ', depth * indent);
@ -82,7 +81,7 @@ pub fn indentedFormat(
try w.splatByteAll(' ', depth * attr_indent);
try w.print("{d}:\n", .{ j });
try attribute.indentedFormat(w, depth, attr_indent + 1, allocator, constant_pool);
try attribute.indentedFormat(w, depth, attr_indent + 1, constant_pool);
}
}