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

Unified Diff: lib/coreimpl/linked_hash_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 | « lib/coreimpl/hash_map_set.dart ('k') | lib/coreimpl/queue.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/coreimpl/linked_hash_map.dart
diff --git a/lib/coreimpl/linked_hash_map.dart b/lib/coreimpl/linked_hash_map.dart
index 37f31697d59aa433d847ded806bf09013d204e10..7f42fae2ecad4b0974d0497f07b5561bf7e4f792 100644
--- a/lib/coreimpl/linked_hash_map.dart
+++ b/lib/coreimpl/linked_hash_map.dart
@@ -106,7 +106,7 @@ class LinkedHashMapImplementation<K, V>
return _map.length;
}
- bool isEmpty() {
+ bool get isEmpty {
return length == 0;
}
« no previous file with comments | « lib/coreimpl/hash_map_set.dart ('k') | lib/coreimpl/queue.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698