Closed
Description
Getter declarations no longer require/allow parentheses: int get foo=> 42;
Setter declarations have an = sign after the identifier: set foo=(int x);
The name of a setter for purposes of reflection and noSuchMethod is id=, whereas the getter is just id. This allows a standard, reliable way to distinguish them by their names just like any other method.
All this needs to get into the spec.