Re: About the syntheticPublic property of member method node in class

2016-04-01 Thread Remi Forax
- Mail original - > De: "Jochen Theodorou" > À: dev@groovy.apache.org > Envoyé: Vendredi 1 Avril 2016 18:02:18 > Objet: Re: About the syntheticPublic property of member method node in class > > > On 01.04.2016 17:50, daniel_sun wrote: > > Hi List, > > > >The following code is c

Re: About the syntheticPublic property of member method node in class

2016-04-01 Thread Jochen Theodorou
On 01.04.2016 17:50, daniel_sun wrote: Hi List, The following code is copied from GinA2, which we use to test the new parser for Groovy. class Book { private String title Book (String theTitle) { title = theTitle } String getTitle(){ return title

About the syntheticPublic property of member method node in class

2016-04-01 Thread daniel_sun
Hi List, The following code is copied from GinA2, which we use to test the new parser for Groovy. class Book { private String title Book (String theTitle) { title = theTitle } String getTitle(){ return title } } I have a question about the syntheti