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

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

Issue 11238035: Make isEmpty a getter. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status file 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 | « utils/pub/version_solver.dart ('k') | utils/template/codegen.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 b4e9092e784857974233724e4170f17db3cb8d28..8d3a4d38292ab8f5533d5857022a0f74aff03287 100644
--- a/utils/pub/yaml/yaml_map.dart
+++ b/utils/pub/yaml/yaml_map.dart
@@ -32,7 +32,7 @@ class YamlMap implements Map {
Collection getKeys() => _map.getKeys().map(_unwrapKey);
Collection getValues() => _map.getValues();
int get length => _map.length;
- bool isEmpty() => _map.isEmpty();
+ bool get isEmpty => _map.isEmpty;
String toString() => _map.toString();
int get hashCode => _hashCode(_map);
« no previous file with comments | « utils/pub/version_solver.dart ('k') | utils/template/codegen.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698