We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f8dcfb commit f2faf70Copy full SHA for f2faf70
jbmc/src/java_bytecode/java_bytecode_convert_method.cpp
@@ -587,6 +587,10 @@ void java_bytecode_convert_methodt::convert(
587
method_symbol.location=m.source_location;
588
method_symbol.location.set_function(method_identifier);
589
590
+ std::vector<irept> &exceptions_list = code_type.throws_exceptions();
591
+ for(const auto &exception_name : m.throws_exception_table)
592
+ exceptions_list.push_back(irept(exception_name));
593
+
594
const std::string signature_string = pretty_signature(code_type);
595
596
// Set up the pretty name for the method entry in the symbol table.
0 commit comments