Workiva / dart_codemod

A library that makes it easy to write and run automated code modifications on a codebase.
Other
60 stars 11 forks source link

Add an ElementVisitingSuggestorMixin for more advanced codemods #7

Open evanweible-wf opened 5 years ago

evanweible-wf commented 5 years ago

The AstVisitingSuggestorMixin leverages the AstVisitor interface to help create suggestors, but it only makes the parsed AST available. Some more advanced or complex codemods may require additional information that is only available by resolving the elements via the analyzer. This would require setting up an AnalysisDriver or something similar from the analyzer package to resolve the elements.

Being able to leverage the ElementVisitor pattern would allow consumers to write suggestors that have more information with which to make decisions by being able to obtain things like the source of a type or an element's inheritance tree.

TimWhiting commented 3 years ago

I needed something similar so I submitted a PR would #38 work?