Community
Participate
Working Groups
It's often interesting to bind a variable to an implicit available name like 'this'. However it's problematic to shadow 'this', since then all the local functions and elements are no longer visible. In Xtend for instance none of the extension methods would work any longer, since they are all invoked on 'this'. Therefore we want to introduce a second implicit variable name 'it' which is the only variable name allowed to be shadowed anywhere, With that you are able to write the following Xtend code: def initialize(Person it) { name = "Horst" age = 64 }
pushed to master
Closing all bugs that were set to RESOLVED before Neon.0