You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Strictly speaking, the modified_classes directory (and the classes.modified property) lists the set of modified java files which may or may not be that set of modified classes. Although in most cases a .java file correspondents to the definition of a single Java class, .java files might define multiple nested classes. For example, the modified java file of Time-13
A possible fix to this issue would require a more complex bug-mining procedure that given a diff and the set of modified java files, it would output the name of the modified classes. (javaparser might help on this.)
The text was updated successfully, but these errors were encountered:
Strictly speaking, the
modified_classes
directory (and theclasses.modified
property) lists the set of modified java files which may or may not be that set of modified classes. Although in most cases a.java
file correspondents to the definition of a single Java class,.java
files might define multiple nested classes. For example, the modified java file of Time-13defines 1 top-level class and 7 nested classes:
Time-13's
modified_classes/13.src
listsas the modified class, but it should list
A possible fix to this issue would require a more complex bug-mining procedure that given a diff and the set of modified java files, it would output the name of the modified classes. (
javaparser
might help on this.)The text was updated successfully, but these errors were encountered: