In Dart Editor build 27025, the following code produces a syntax error on the line declaring the getter get x
:
main() {
var _x;
set x(x) => _x = x; // This is okay
get x => _x; // Syntax error here
}
Note that the setter set x
doesn't produce an error. Is this a bug in Dart Editor or am I doing something wrong here?
As you said, getters are functions that are used to retrieve the values of object properties and setters are functions that are used to set the values of object properties. In you example code,
_x
is not an object property.The spec shows that getterSignature and setterSignature are only allowed in classes and at the top-level of libraries.
The only thing that surprises me is that your
set
doesn't produce a syntax error.