* Fix issues in flow-comments to preserve comments and there order (fixes #10324) * Add support in flow-comments for extends in class declarations (fixes #10323, #10321) * Refactoring and cleanup of flow-comments plugin * Fix comments preservation logic of flow-comments * Fix flow-comments where comments are class identifier and extends keyword
8 lines
71 B
JavaScript
8 lines
71 B
JavaScript
/*a*/
|
|
type Foo = number;
|
|
/*b*/
|
|
var foo;
|
|
/*c*/
|
|
type Bar = number;
|
|
/*d*/
|