Updates:
Status: Started
Owner: anquetil...(a)gmail.com
Comment #5 on issue 728 by tudor.gi...(a)gmail.com: VerveineJ places methods
in the wrong classes
http://code.google.com/p/moose-technology/issues/detail?id=728
Great job.
However, we still have another case of misplaced methods that is still
present.
It is different than the one I sent you in that it seems to only involve
super calls (while the other one was related to calls to a different
class). Essentially, something like:
public class A extends SomeClass {
...
public void x() {
super.m()
}
}
leads to m() being placed in an unrelated class B.
I suspect it is the same issue as the one you fixed only present in a
different place. I am not sure if my description is clear enough.
I will try again to reproduce on a smaller case study.