Format source debug extension attribute

This commit is contained in:
ktkk 2026-07-05 16:08:32 +02:00
parent 6971dce705
commit 41aad5e7b8

View file

@ -393,7 +393,10 @@ pub const AttributeInfo = union(enum) {
_ = try w.write("source_file:\n"); _ = try w.write("source_file:\n");
try source_file.indentedFormat(w, depth, indent + 1, constant_pool); try source_file.indentedFormat(w, depth, indent + 1, constant_pool);
}, },
//.source_debug_extension, .source_debug_extension => |attr| {
try w.splatByteAll(' ', depth * indent);
try w.print("debug_extension: {s}\n", .{ attr.debug_extension });
},
//.line_number_table, //.line_number_table,
//.local_variable_table, //.local_variable_table,
//.local_variable_type_table, //.local_variable_type_table,