| Index: sdk/lib/_internal/compiler/implementation/scanner/listener.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/scanner/listener.dart b/sdk/lib/_internal/compiler/implementation/scanner/listener.dart
|
| index 04440fc08af84cb3c4c29b2dc4069e29c2051ab0..34408bfdf22693cf410e3296fbdca50f92913577 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/scanner/listener.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/scanner/listener.dart
|
| @@ -772,7 +772,7 @@ class ElementListener extends Listener {
|
| SourceString nativeTagInfo = native.checkForNativeClass(this);
|
| NodeList interfaces =
|
| makeNodeList(interfacesCount, implementsKeyword, null, ",");
|
| - TypeAnnotation supertype = popNode();
|
| + Node supertype = popNode();
|
| NodeList typeParameters = popNode();
|
| Identifier name = popNode();
|
| int id = idGenerator();
|
| @@ -1188,7 +1188,7 @@ class NodeListener extends ElementListener {
|
| NodeList body = popNode();
|
| NodeList interfaces =
|
| makeNodeList(interfacesCount, implementsKeyword, null, ",");
|
| - TypeAnnotation supertype = popNode();
|
| + Node supertype = popNode();
|
| NodeList typeParameters = popNode();
|
| Identifier name = popNode();
|
| Modifiers modifiers = popNode();
|
|
|