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.
type
declarations should have distinct AST from var
s #414
Closed
Description
- We currently generate a "special" variable declaration for a type declaration.
- This was done to allow core rules such as
semi
to work with type declarations out of the box. - However, other core rules (and plugin rules) have issues with this
It leads to issues such as #350 #359
We should come up with a distinct AST for type declarations and figure out how to make semi
work in some other way.