Closed
Description
I'm currently working on updating our tests to use the new getter syntax. I noticed this case:
class SubAbstract2 extends Abstract {
abstract get x();
}
In the new syntax, this turns into:
class SubAbstract2 extends Abstract {
abstract get x;
}
As far as I understand, the abstract keyword is going away, so it becomes:
class SubAbstract2 extends Abstract {
get x;
}
This looks like a field declaration.
I don't care whether or not this is changed, I just want to bring it up as I'm not sure this was intentional.