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

Unified Diff: lib/compiler/implementation/library_loader.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/lib/js_helper.dart ('k') | lib/compiler/implementation/resolution/scope.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/compiler/implementation/library_loader.dart
diff --git a/lib/compiler/implementation/library_loader.dart b/lib/compiler/implementation/library_loader.dart
index e23723b3e97b27bbbd3ad0f01ccd90ac66ea8b43..2f296edbe1830a9a231e3afb698f02234748199d 100644
--- a/lib/compiler/implementation/library_loader.dart
+++ b/lib/compiler/implementation/library_loader.dart
@@ -501,7 +501,7 @@ class LibraryDependencyNode {
*/
void registerInitialExports() {
pendingExportSet.addAll(
- library.localScope.getValues().filter((Element element) {
+ library.localScope.values.filter((Element element) {
// At this point [localScope] only contains members so we don't need
// to check for foreign or prefix elements.
return !element.name.isPrivate();
@@ -512,7 +512,7 @@ class LibraryDependencyNode {
* Registers the compute export scope with the node library.
*/
void registerExports() {
- library.setExports(exportScope.getValues());
+ library.setExports(exportScope.values);
}
/**
« no previous file with comments | « lib/compiler/implementation/lib/js_helper.dart ('k') | lib/compiler/implementation/resolution/scope.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698