Skip to content

Commit 85315da

Browse files
committed
languaget is not a messaget
Pass a message handler as an argument to several of its functions, but do not construct a messaget object without a configured message handler as that is deprecated.
1 parent d7bb1d4 commit 85315da

29 files changed

+328
-254
lines changed

jbmc/src/java_bytecode/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -678,10 +678,10 @@ determine which loading strategy to use.
678678
If [lazy_methods_mode](\ref java_bytecode_languaget::lazy_methods_mode) is
679679
\ref java_bytecode_languaget::LAZY_METHODS_MODE_EAGER then eager loading is
680680
used. Under eager loading
681-
\ref java_bytecode_languaget::convert_single_method(const irep_idt &, symbol_table_baset &)
681+
\ref java_bytecode_languaget::convert_single_method(const irep_idt &, symbol_table_baset &, message_handlert &)
682682
is called once for each method listed in method_bytecode (described above). This
683683
then calls
684-
\ref java_bytecode_languaget::convert_single_method(const irep_idt &, symbol_table_baset &, optionalt<ci_lazy_methods_neededt>)
684+
\ref java_bytecode_languaget::convert_single_method(const irep_idt &, symbol_table_baset &, optionalt<ci_lazy_methods_neededt>, message_handlert &)
685685
without a ci_lazy_methods_neededt object, which calls
686686
\ref java_bytecode_convert_method, passing in the method parse tree. This in
687687
turn uses \ref java_bytecode_convert_methodt to turn the bytecode into symbols

0 commit comments

Comments
 (0)