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

2016-04-02 Thread Jochen Theodorou
On 01.04.2016 21:08, Remi Forax wrote: [...] What about, methods generated by the compiler because they are needed by the VM, they cary no metadata for the compiler, that why they are ignored by the compiler. There is no flag for method synthetized by the compiler but visible by the compiler

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

2016-04-02 Thread daniel_sun
I've fixed the issue in the new parser. Thanks for your help, Jochen :) 在 "Jochen Theodorou [via Groovy]" ,2016年4月2日 上午12:02写道: On 01.04.2016 17:50, daniel_sun wrote: > Hi List, > >The following code is copied from GinA2, which we use to test

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

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