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

Unified Diff: lib/coreimpl/queue.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/linked_hash_map.dart ('k') | lib/coreimpl/splay_tree.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/coreimpl/queue.dart
diff --git a/lib/coreimpl/queue.dart b/lib/coreimpl/queue.dart
index 6a7400280e646b2063facda56f758b26a1d94f93..84c4efd33cc29cd1230a6f46a08bfd7ec375eb61 100644
--- a/lib/coreimpl/queue.dart
+++ b/lib/coreimpl/queue.dart
@@ -158,7 +158,7 @@ class DoubleLinkedQueue<E> implements Queue<E> {
return counter;
}
- bool isEmpty() {
+ bool get isEmpty {
return (_sentinel._next === _sentinel);
}
« no previous file with comments | « lib/coreimpl/linked_hash_map.dart ('k') | lib/coreimpl/splay_tree.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698