We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This is a proposal to extend #3578 to allow abstract properties in abstract classes. So the following should be legal:
abstract class A { abstract p; } class B extends A { get p() {...} set p(v) {...} }