Format source debug extension attribute
This commit is contained in:
parent
6971dce705
commit
41aad5e7b8
1 changed files with 4 additions and 1 deletions
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue