File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ void java_bytecode_languaget::set_language_options(const optionst &options)
245
245
options.get_bool_option (" ignore-manifest-main-class" );
246
246
247
247
if (options.is_set (" context-include" ) || options.is_set (" context-exclude" ))
248
- method_in_context = get_context (options);
248
+ method_context = get_context (options);
249
249
250
250
language_options_initialized=true ;
251
251
}
@@ -1174,7 +1174,7 @@ bool java_bytecode_languaget::convert_single_method(
1174
1174
lazy_class_to_declared_symbols_mapt &class_to_declared_symbols)
1175
1175
{
1176
1176
// Do not convert if method is not in context
1177
- if (method_in_context && !(*method_in_context )(id2string (function_id)))
1177
+ if (method_context && !(*method_context )(id2string (function_id)))
1178
1178
{
1179
1179
return false ;
1180
1180
}
Original file line number Diff line number Diff line change @@ -297,7 +297,7 @@ class java_bytecode_languaget:public languaget
297
297
std::unordered_map<std::string, object_creation_referencet> references;
298
298
299
299
// / If set, method bodies are only elaborated if they pass the filter
300
- optionalt<prefix_filtert> method_in_context ;
300
+ optionalt<prefix_filtert> method_context ;
301
301
};
302
302
303
303
std::unique_ptr<languaget> new_java_bytecode_language ();
You can’t perform that action at this time.
0 commit comments