| OLD | NEW |
| 1 /// The Dart HTML library. | 1 /// The Dart HTML library. |
| 2 /// | 2 /// |
| 3 /// For examples, see | 3 /// For examples, see |
| 4 /// [Dart HTML5 Samples](https://github.com/dart-lang/dart-html5-samples) | 4 /// [Dart HTML5 Samples](https://github.com/dart-lang/dart-html5-samples) |
| 5 /// on Github. | 5 /// on Github. |
| 6 library dart.dom.html; | 6 library dart.dom.html; |
| 7 | 7 |
| 8 import 'dart:async'; | 8 import 'dart:async'; |
| 9 import 'dart:collection'; | 9 import 'dart:collection'; |
| 10 import 'dart:_collection-dev' hide Symbol; | 10 import 'dart:_collection-dev' hide Symbol, deprecated; |
| 11 import 'dart:html_common'; | 11 import 'dart:html_common'; |
| 12 import 'dart:indexed_db'; | 12 import 'dart:indexed_db'; |
| 13 import 'dart:isolate'; | 13 import 'dart:isolate'; |
| 14 import 'dart:json' as json; | 14 import 'dart:json' as json; |
| 15 import 'dart:math'; | 15 import 'dart:math'; |
| 16 import 'dart:typed_data'; | 16 import 'dart:typed_data'; |
| 17 import 'dart:svg' as svg; | 17 import 'dart:svg' as svg; |
| 18 import 'dart:web_audio' as web_audio; | 18 import 'dart:web_audio' as web_audio; |
| 19 import 'dart:web_gl' as gl; | 19 import 'dart:web_gl' as gl; |
| 20 import 'dart:web_sql'; | 20 import 'dart:web_sql'; |
| (...skipping 29354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 29375 _position = nextPosition; | 29375 _position = nextPosition; |
| 29376 return true; | 29376 return true; |
| 29377 } | 29377 } |
| 29378 _current = null; | 29378 _current = null; |
| 29379 _position = _array.length; | 29379 _position = _array.length; |
| 29380 return false; | 29380 return false; |
| 29381 } | 29381 } |
| 29382 | 29382 |
| 29383 T get current => _current; | 29383 T get current => _current; |
| 29384 } | 29384 } |
| OLD | NEW |