| OLD | NEW |
| 1 /// The Dart HTML library. | 1 /// The Dart HTML library. |
| 2 /// |
| 3 /// For examples, see [Dart HTML5 Samples](https://github.com/dart-lang/dart-htm
l5-samples) on Github. |
| 2 library dart.dom.html; | 4 library dart.dom.html; |
| 3 | 5 |
| 4 import 'dart:async'; | 6 import 'dart:async'; |
| 5 import 'dart:collection'; | 7 import 'dart:collection'; |
| 6 import 'dart:_collection-dev' hide Symbol; | 8 import 'dart:_collection-dev' hide Symbol; |
| 7 import 'dart:html_common'; | 9 import 'dart:html_common'; |
| 8 import 'dart:indexed_db'; | 10 import 'dart:indexed_db'; |
| 9 import 'dart:isolate'; | 11 import 'dart:isolate'; |
| 10 import 'dart:json' as json; | 12 import 'dart:json' as json; |
| 11 import 'dart:math'; | 13 import 'dart:math'; |
| (...skipping 29593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 29605 _position = nextPosition; | 29607 _position = nextPosition; |
| 29606 return true; | 29608 return true; |
| 29607 } | 29609 } |
| 29608 _current = null; | 29610 _current = null; |
| 29609 _position = _array.length; | 29611 _position = _array.length; |
| 29610 return false; | 29612 return false; |
| 29611 } | 29613 } |
| 29612 | 29614 |
| 29613 T get current => _current; | 29615 T get current => _current; |
| 29614 } | 29616 } |
| OLD | NEW |