| OLD | NEW |
| 1 /// The Dart HTML library. | 1 /// The Dart HTML library. |
| 2 /// |
| 3 /// For examples, see |
| 4 /// [Dart HTML5 Samples](https://github.com/dart-lang/dart-html5-samples) |
| 5 /// on Github. |
| 2 library dart.dom.html; | 6 library dart.dom.html; |
| 3 | 7 |
| 4 import 'dart:async'; | 8 import 'dart:async'; |
| 5 import 'dart:collection'; | 9 import 'dart:collection'; |
| 6 import 'dart:_collection-dev' hide Symbol; | 10 import 'dart:_collection-dev' hide Symbol; |
| 7 import 'dart:html_common'; | 11 import 'dart:html_common'; |
| 8 import 'dart:indexed_db'; | 12 import 'dart:indexed_db'; |
| 9 import 'dart:isolate'; | 13 import 'dart:isolate'; |
| 10 import 'dart:json' as json; | 14 import 'dart:json' as json; |
| 11 import 'dart:math'; | 15 import 'dart:math'; |
| (...skipping 29602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 29614 _position = nextPosition; | 29618 _position = nextPosition; |
| 29615 return true; | 29619 return true; |
| 29616 } | 29620 } |
| 29617 _current = null; | 29621 _current = null; |
| 29618 _position = _array.length; | 29622 _position = _array.length; |
| 29619 return false; | 29623 return false; |
| 29620 } | 29624 } |
| 29621 | 29625 |
| 29622 T get current => _current; | 29626 T get current => _current; |
| 29623 } | 29627 } |
| OLD | NEW |