This repository was archived by the owner on Jan 19, 2019. It is now read-only.
This repository was archived by the owner on Jan 19, 2019. It is now read-only.
Add support for abstract class properties #234
Closed
Description
What version of TypeScript are you using?
2.3
What version of typescript-eslint-parser
are you using?
2.1
What code were you trying to parse?
abstract class Foo {
abstract bar;
abstract baz = 3;
}
What did you expect to happen?
Bar and baz properties should be labeled as abstract.
What happened?
They use the same node type as class properties