| Index: lib/compiler/implementation/resolver.dart
|
| diff --git a/lib/compiler/implementation/resolver.dart b/lib/compiler/implementation/resolver.dart
|
| index 3f982af889d169fbf52283738f7eb36f1010c77a..08eb7a7b0e3a1b61afaed1c15209fcfe09288f0a 100644
|
| --- a/lib/compiler/implementation/resolver.dart
|
| +++ b/lib/compiler/implementation/resolver.dart
|
| @@ -2,7 +2,7 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -interface TreeElements {
|
| +abstract class TreeElements {
|
| Element operator[](Node node);
|
| Selector getSelector(Send send);
|
| DartType getType(TypeAnnotation annotation);
|
| @@ -717,7 +717,7 @@ class CommonResolverVisitor<R> extends AbstractVisitor<R> {
|
| }
|
| }
|
|
|
| -interface LabelScope {
|
| +abstract class LabelScope {
|
| LabelScope get outer;
|
| LabelElement lookup(String label);
|
| }
|
|
|