File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -1174,11 +1174,11 @@ bool java_bytecode_languaget::convert_single_method(
1174
1174
get_message_handler ());
1175
1175
break ;
1176
1176
case synthetic_method_typet::INVOKEDYNAMIC_CAPTURE_CONSTRUCTOR:
1177
- writable_symbol.value = get_invokedynamic_synthetic_constructor (
1177
+ writable_symbol.value = invokedynamic_synthetic_constructor (
1178
1178
function_id, symbol_table, get_message_handler ());
1179
1179
break ;
1180
1180
case synthetic_method_typet::INVOKEDYNAMIC_METHOD:
1181
- writable_symbol.value = get_invokedynamic_synthetic_method (
1181
+ writable_symbol.value = invokedynamic_synthetic_method (
1182
1182
function_id, symbol_table, get_message_handler ());
1183
1183
break ;
1184
1184
}
Original file line number Diff line number Diff line change @@ -362,7 +362,7 @@ static const symbolt &get_or_create_method_symbol(
362
362
return symbol_table.lookup_ref (identifier);
363
363
}
364
364
365
- codet get_invokedynamic_synthetic_constructor (
365
+ codet invokedynamic_synthetic_constructor (
366
366
const irep_idt &function_id,
367
367
symbol_table_baset &symbol_table,
368
368
message_handlert &message_handler)
@@ -428,7 +428,7 @@ codet get_invokedynamic_synthetic_constructor(
428
428
return std::move (result);
429
429
}
430
430
431
- codet get_invokedynamic_synthetic_method (
431
+ codet invokedynamic_synthetic_method (
432
432
const irep_idt &function_id,
433
433
symbol_table_baset &symbol_table,
434
434
message_handlert &message_handler)
Original file line number Diff line number Diff line change @@ -30,12 +30,14 @@ void create_invokedynamic_synthetic_classes(
30
30
synthetic_methods_mapt &synthetic_methods,
31
31
message_handlert &message_handler);
32
32
33
- codet get_invokedynamic_synthetic_constructor (
33
+ // / Create invokedynamic synthetic constructor
34
+ codet invokedynamic_synthetic_constructor (
34
35
const irep_idt &function_id,
35
36
symbol_table_baset &symbol_table,
36
37
message_handlert &message_handler);
37
38
38
- codet get_invokedynamic_synthetic_method (
39
+ // / Create invokedynamic synthetic method
40
+ codet invokedynamic_synthetic_method (
39
41
const irep_idt &function_id,
40
42
symbol_table_baset &symbol_table,
41
43
message_handlert &message_handler);
You can’t perform that action at this time.
0 commit comments