Include Annotation.typeArguments in AstTextPrinter.

Change-Id: Id1ee5cac6b0b84fe153d0e21554e381d34d8b5bb
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/213101
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
Commit-Queue: Konstantin Shcheglov <scheglov@google.com>
This commit is contained in:
Konstantin Shcheglov 2021-09-10 18:00:47 +00:00 committed by commit-bot@chromium.org
parent 28532bae7a
commit ce46e99e3d

View file

@ -28,6 +28,7 @@ class AstTextPrinter extends ThrowingAstVisitor<void> {
void visitAnnotation(Annotation node) {
_token(node.atSign);
node.name.accept(this);
node.typeArguments?.accept(this);
_token(node.period);
node.constructorName?.accept(this);
node.arguments?.accept(this);