Index: lib/coreimpl/queue.dart |
diff --git a/lib/coreimpl/queue.dart b/lib/coreimpl/queue.dart |
index 84c4efd33cc29cd1230a6f46a08bfd7ec375eb61..6601a83e12724c853a65858a17ccd488ec3fd771 100644 |
--- a/lib/coreimpl/queue.dart |
+++ b/lib/coreimpl/queue.dart |
@@ -136,11 +136,11 @@ class DoubleLinkedQueue<E> implements Queue<E> { |
return _sentinel._next.remove(); |
} |
- E first() { |
+ E get first { |
return _sentinel._next.element; |
} |
- E last() { |
+ E get last { |
return _sentinel._previous.element; |
} |