eric-milles opened a new pull request, #1755:
URL: https://github.com/apache/groovy/pull/1755
Provides consistent handling for read and write access of static fields:
```groovy
class Type {
private static field
static getField() {
// not used
}
static sm() {
Type.field
this.field
field
}
}
```
https://issues.apache.org/jira/browse/GROOVY-10695
This could be separated into a few commits:
* refactor of `MixinASTTransformation`
* removal of `implementsGroovyObject` from `AsmClassGenerator`
* removal of `isThisExpression`/`isSuperExpression`/`isNullConstant` from
`AsmClassGenerator`
* add static field, non-static receiver checks to `visitAttributeExpression`
and `visitPropertyExpression`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]