Community
Participate
Working Groups
Build Identifier: 2.1.0 The Following Xtend class does not compile to java class Lala { def create _this : if (s == "EOF") {doit();new A()} else {new B()} createTheStuff(String s) { } def doit() { } } A and B are just two dummy classes. The code that is generated is Lala _Lala = Lala; _Lala.doit(); But i guess it should be Lala _Lala = Lala.this; _Lala.doit(); Reproducible: Always
*** This bug has been marked as a duplicate of bug 362868 ***