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
No labels are assigned to CtReference in gumtree.spoon.builder.LabelFinder.
In the scenario of Class<T>, T has the role of TYPE_ARGUMENT and Class<T> has the role of TYPE. Checking for this pattern in isToIgnore() and making corresponding changes in LabelFinder should help us consider the scenario of generics, but it may also result in consideration of unwanted cases.
For example,
The above conditions lead to a weird failure of one test case, ie: DiffTest.testToString().
The text was updated successfully, but these errors were encountered:
Currently, we don't support identifying changes which are related generics in Java.
This happens due to two reasons:
CtReference
in isToIgnore()CtReference
in gumtree.spoon.builder.LabelFinder.In the scenario of
Class<T>
, T has the role ofTYPE_ARGUMENT
andClass<T>
has the role ofTYPE
. Checking for this pattern inisToIgnore()
and making corresponding changes inLabelFinder
should help us consider the scenario of generics, but it may also result in consideration of unwanted cases.For example,
The above conditions lead to a weird failure of one test case, ie: DiffTest.testToString().
The text was updated successfully, but these errors were encountered: