 Chromium Code Reviews
 Chromium Code Reviews Issue 11230011:
  Make hasNext a getter instead of a method.  (Closed) 
  Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
    
  
    Issue 11230011:
  Make hasNext a getter instead of a method.  (Closed) 
  Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart| Index: lib/core/iterator.dart | 
| diff --git a/lib/core/iterator.dart b/lib/core/iterator.dart | 
| index c3a346d87ce904ae3defb32e285e2c525bfa47e4..4e3000d87648adce3064c508ed85e4f00abc7b68 100644 | 
| --- a/lib/core/iterator.dart | 
| +++ b/lib/core/iterator.dart | 
| @@ -20,5 +20,5 @@ abstract class Iterator<E> { | 
| /** | 
| * Returns whether the [Iterator] has elements left. | 
| */ | 
| - bool hasNext(); | 
| + bool hasNext; | 
| } |