Index: lib/compiler/implementation/resolution/scope.dart |
diff --git a/lib/compiler/implementation/resolution/scope.dart b/lib/compiler/implementation/resolution/scope.dart |
index d25f8c1c3d7fd122cfc1ddd3da074b3f6292c387..519cb66b5beb18912e9b9594d2f7ac7668a3ce2e 100644 |
--- a/lib/compiler/implementation/resolution/scope.dart |
+++ b/lib/compiler/implementation/resolution/scope.dart |
@@ -104,13 +104,13 @@ class MethodScope extends MutableScope { |
MethodScope(Scope parent, this.element) |
: super(parent); |
- String toString() => 'MethodScope($element${elements.getKeys()})'; |
+ String toString() => 'MethodScope($element${elements.keys})'; |
} |
class BlockScope extends MutableScope { |
BlockScope(Scope parent) : super(parent); |
- String toString() => 'BlockScope(${elements.getKeys()})'; |
+ String toString() => 'BlockScope(${elements.keys})'; |
} |
/** |