Re: @Builder and derived clases?

2016-02-05 Thread Les Hartzman
uilder > should be able to access properties of superclasses, that is currently not > possible (see https://issues.apache.org/jira/browse/GROOVY-7640) > > Cheers, > Pascal > > > Am 05.02.2016 um 02:01 schrieb Les Hartzman: > >> I'm trying to use @Builder on a deriv

Syntax question using (identifier 1, identifier 2) on LHS of =

2017-01-27 Thread Les Hartzman
Hi, I just saw a reference to using the above syntax, specifically as follows: def (string1, string2) = "part1-part2".tokenize("-") This assigns string1 "part1" and string2 "part2". So my main question is what is this referred to as? You can't do: String (string1, string2) =