Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(234)

Unified Diff: lib/compiler/implementation/resolution/scope.dart

Issue 11267018: Make getKeys, getValues getters (keys, values). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status files with co19 issue number. Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/compiler/implementation/library_loader.dart ('k') | lib/compiler/implementation/ssa/codegen.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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})';
}
/**
« no previous file with comments | « lib/compiler/implementation/library_loader.dart ('k') | lib/compiler/implementation/ssa/codegen.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698