Community
Participate
Working Groups
The following snippet leads to an error in the xtend file if it's added to the domainmodel generator. The first e.name is ok, but the one after after the equals sign is not recognized. def void forEachError(Entity p) { { p.features.forEach(e|{ e.name=e.name.toFirstLower() true }) p } } Workaround: Add the type to the closure: def void forallError(Entity p) { { p.features.forall(Feature e|{ e.name=e.name.toFirstLower() true }) p } }
Pushed to master.
Closing all bugs that were set to RESOLVED before Neon.0