Skip to content

Allow accessing pointer type selector via friend function #2301

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jbmc/src/java_bytecode/java_bytecode_language.h
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ class java_bytecode_languaget:public languaget
virtual void convert_lazy_method(
const irep_idt &function_id,
symbol_table_baset &symbol_table) override;
const select_pointer_typet &get_pointer_type_selector() const;

protected:
void convert_single_method(
Expand All @@ -153,7 +154,6 @@ class java_bytecode_languaget:public languaget
optionalt<ci_lazy_methods_neededt> needed_lazy_methods);

bool do_ci_lazy_method_conversion(symbol_tablet &, method_bytecodet &);
const select_pointer_typet &get_pointer_type_selector() const;

irep_idt main_class;
std::vector<irep_idt> main_jar_classes;
Expand Down