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

Unified Diff: utils/pub/yaml/yaml_map.dart

Issue 10869033: Update pub to new getter syntax. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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 | « utils/pub/yaml/parser.dart ('k') | utils/tests/pub/test_pub.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/yaml/yaml_map.dart
diff --git a/utils/pub/yaml/yaml_map.dart b/utils/pub/yaml/yaml_map.dart
index 27d5cfc9a94819bd43b27d2d5fba0315501a0f8b..5835cf49e0aa2a30e4151196fbdebd4c22aaaedb 100644
--- a/utils/pub/yaml/yaml_map.dart
+++ b/utils/pub/yaml/yaml_map.dart
@@ -31,7 +31,7 @@ class YamlMap implements Map, Hashable {
_map.forEach((k, v) => f(_unwrapKey(k), v));
Collection getKeys() => _map.getKeys().map(_unwrapKey);
Collection getValues() => _map.getValues();
- int get length() => _map.length;
+ int get length => _map.length;
bool isEmpty() => _map.isEmpty();
String toString() => _map.toString();
« no previous file with comments | « utils/pub/yaml/parser.dart ('k') | utils/tests/pub/test_pub.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698