File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -133,6 +133,7 @@ pub enum AttributeInfo {
133133 SourceDebugExtension ,
134134 LineNumberTable ( Vec < AttributeInfoLineNumberTableEntry > ) ,
135135 LocalVariableTable ( Vec < LocalVariableTableEntry > ) ,
136+ BootstrapMethods ( Vec < u8 > ) , // TODO
136137 MethodParameters ( Vec < u8 > ) , // TODO
137138 NestMembers ( Vec < u8 > ) , // TODO
138139 NestHost ( Vec < u8 > ) , // TODO
@@ -154,6 +155,7 @@ impl AttributeInfo {
154155 "Exceptions" => AttributeInfo :: Exceptions ( info. to_vec ( ) ) ,
155156 "InnerClasses" => AttributeInfo :: InnerClasses ( info. to_vec ( ) ) ,
156157 "Synthetic" => AttributeInfo :: Synthetic ( info. to_vec ( ) ) ,
158+ "BootstrapMethods" => AttributeInfo :: BootstrapMethods ( info. to_vec ( ) ) ,
157159 "MethodParameters" => AttributeInfo :: MethodParameters ( info. to_vec ( ) ) ,
158160 "NestMembers" => AttributeInfo :: NestMembers ( info. to_vec ( ) ) ,
159161 "NestHost" => AttributeInfo :: NestHost ( info. to_vec ( ) ) ,
You can’t perform that action at this time.
0 commit comments