Skip to content

Commit

Permalink
Note when symbol-table entries are abstract methods
Browse files Browse the repository at this point in the history
  • Loading branch information
smowton committed May 30, 2018
1 parent 9a0aa9c commit 6d3306b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions jbmc/src/java_bytecode/java_bytecode_convert_method.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,7 @@ void java_bytecode_convert_method_lazy(
}

method_symbol.type=member_type;
method_symbol.type.set(ID_C_abstract, m.is_abstract);
symbol_table.add(method_symbol);
}

Expand Down
1 change: 1 addition & 0 deletions src/util/irep_ids.def
Original file line number Diff line number Diff line change
Expand Up @@ -664,6 +664,7 @@ IREP_ID_TWO(overlay_class, java::com.diffblue.OverlayClassImplementation)
IREP_ID_TWO(overlay_method, java::com.diffblue.OverlayMethodImplementation)
IREP_ID_TWO(C_annotations, #annotations)
IREP_ID_ONE(final)
IREP_ID_TWO(C_abstract, #abstract)

// Projects depending on this code base that wish to extend the list of
// available ids should provide a file local_irep_ids.h in their source tree and
Expand Down

0 comments on commit 6d3306b

Please sign in to comment.