| Index: pkg/compiler/lib/src/resolution/semantic_visitor_mixins.dart
|
| diff --git a/pkg/compiler/lib/src/resolution/semantic_visitor_mixins.dart b/pkg/compiler/lib/src/resolution/semantic_visitor_mixins.dart
|
| index d9f08e7fa0b380aeb4aeabcf592183f439f3c416..fce11790003dacfdbad320ee273c2e431740c833 100644
|
| --- a/pkg/compiler/lib/src/resolution/semantic_visitor_mixins.dart
|
| +++ b/pkg/compiler/lib/src/resolution/semantic_visitor_mixins.dart
|
| @@ -7700,6 +7700,12 @@ class TraversalVisitor<R, A> extends SemanticVisitor<R, A>
|
| node.visitChildren(this);
|
| return null;
|
| }
|
| +
|
| + @override
|
| + R visitTypeAnnotation(TypeAnnotation node) {
|
| + // Skip [Send] contained in type annotations, like `prefix.Type`.
|
| + return null;
|
| + }
|
| }
|
|
|
| /// Mixin that groups all non-compound `visitStaticX` and `visitTopLevelX`
|
|
|