The analyzer package parses code into an AST, which we need to visit to style the code that it represents.
The visitor API includes all possible nodes that might be visited: https://pub.dev/documentation/analyzer/latest/dart_ast_ast/AstVisitor-class.html
We need to figure out which parts of code corresponds to each visitor method. I've been trying this with trial and error, but it's taking a very long time.
@domesticmouse - do you know if there's any documentation to help with this?
The analyzer package parses code into an AST, which we need to visit to style the code that it represents.
The visitor API includes all possible nodes that might be visited: https://pub.dev/documentation/analyzer/latest/dart_ast_ast/AstVisitor-class.html
We need to figure out which parts of code corresponds to each visitor method. I've been trying this with trial and error, but it's taking a very long time.
@domesticmouse - do you know if there's any documentation to help with this?