xtend-contrib icon indicating copy to clipboard operation
xtend-contrib copied to clipboard

Provides commonly requested features that are too controversial for the Xtend core library

Results 3 xtend-contrib issues
Sort by recently updated
recently updated
newest added

The following would be useful in a project I'm working on and using Xtend in - would a contribution (PR) from me with an implementation of what is outlined below...

These are the annotations I would like to port from projectlombok to xtend first: - NoArgsConstructor, AllArgsConstructor, RequiredArgsConstructor, probably with a very similar API, so you can control constructor visibility,...

``` @Buildable class A {} @Buildable class B extends A {} ``` Error message: ``` Name clash: The method build(Procedure1) of type B has the same erasure as build(Procedure1) of...