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

Unified Diff: lib/html/dart2js/html_dart2js.dart

Issue 11230011: Make hasNext a getter instead of a method. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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:
Download patch
Index: lib/html/dart2js/html_dart2js.dart
diff --git a/lib/html/dart2js/html_dart2js.dart b/lib/html/dart2js/html_dart2js.dart
index 0cf5f3741cee76fb515e4737eca4a840f3e7e5d8..9c7b8fe6bdc0b2fc2b9119aeead075804f49ded1 100644
--- a/lib/html/dart2js/html_dart2js.dart
+++ b/lib/html/dart2js/html_dart2js.dart
@@ -11625,7 +11625,7 @@ class _FrozenElementListIterator implements Iterator<Element> {
* [NoMoreElementsException] if no element is left.
*/
Element next() {
- if (!hasNext()) {
+ if (!hasNext) {
throw const NoMoreElementsException();
}
@@ -11635,7 +11635,7 @@ class _FrozenElementListIterator implements Iterator<Element> {
/**
* Returns whether the [Iterator] has elements left.
*/
- bool hasNext() => _index < _list.length;
+ bool get hasNext => _index < _list.length;
}
class _ElementAttributeMap implements AttributeMap {
@@ -38891,7 +38891,7 @@ class _Collections {
}
static bool isEmpty(Iterable<Object> iterable) {
- return !iterable.iterator().hasNext();
+ return !iterable.iterator().hasNext;
}
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -40560,7 +40560,7 @@ class _FixedSizeListIterator<T> extends _VariableSizeListIterator<T> {
: super(array),
_length = array.length;
- bool hasNext() => _length > _pos;
+ bool get hasNext => _length > _pos;
final int _length; // Cache array length for faster access.
}
@@ -40571,10 +40571,10 @@ class _VariableSizeListIterator<T> implements Iterator<T> {
: _array = array,
_pos = 0;
- bool hasNext() => _array.length > _pos;
+ bool get hasNext => _array.length > _pos;
T next() {
- if (!hasNext()) {
+ if (!hasNext) {
throw const NoMoreElementsException();
}
return _array[_pos++];

Powered by Google App Engine
This is Rietveld 408576698