File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1860,9 +1860,9 @@ void java_bytecode_parsert::read_bootstrapmethods_entry(classt &parsed_class)
1860
1860
// We read the three arguments here to see whether they correspond to
1861
1861
// our hypotheses for this being a lambda function entry.
1862
1862
1863
- u2 argument_index1 = u2_values[0 ];
1864
- u2 argument_index2 = u2_values[1 ];
1865
- u2 argument_index3 = u2_values[2 ];
1863
+ u2 interface_type_index = u2_values[0 ];
1864
+ u2 method_handle_index = u2_values[1 ];
1865
+ u2 method_type_index = u2_values[2 ];
1866
1866
1867
1867
// The additional arguments for the altmetafactory call are skipped,
1868
1868
// as they are currently not used. We verify though that they are of
@@ -1883,9 +1883,9 @@ void java_bytecode_parsert::read_bootstrapmethods_entry(classt &parsed_class)
1883
1883
}
1884
1884
1885
1885
const pool_entryt &interface_type_argument =
1886
- pool_entry (argument_index1 );
1887
- const pool_entryt &method_handle_argument = pool_entry (argument_index2 );
1888
- const pool_entryt &method_type_argument = pool_entry (argument_index3 );
1886
+ pool_entry (interface_type_index );
1887
+ const pool_entryt &method_handle_argument = pool_entry (method_handle_index );
1888
+ const pool_entryt &method_type_argument = pool_entry (method_type_index );
1889
1889
1890
1890
if (
1891
1891
!(interface_type_argument.tag == CONSTANT_MethodType &&
You can’t perform that action at this time.
0 commit comments