| OLD | NEW |
| 1 library html; | 1 library html; |
| 2 | 2 |
| 3 import 'dart:async'; | 3 import 'dart:async'; |
| 4 import 'dart:collection'; | 4 import 'dart:collection'; |
| 5 import 'dart:collection-dev'; |
| 5 import 'dart:html_common'; | 6 import 'dart:html_common'; |
| 6 import 'dart:indexed_db'; | 7 import 'dart:indexed_db'; |
| 7 import 'dart:isolate'; | 8 import 'dart:isolate'; |
| 8 import 'dart:json' as json; | 9 import 'dart:json' as json; |
| 9 import 'dart:math'; | 10 import 'dart:math'; |
| 10 import 'dart:svg' as svg; | 11 import 'dart:svg' as svg; |
| 11 import 'dart:web_audio' as web_audio; | 12 import 'dart:web_audio' as web_audio; |
| 12 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 13 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 13 // for details. All rights reserved. Use of this source code is governed by a | 14 // for details. All rights reserved. Use of this source code is governed by a |
| 14 // BSD-style license that can be found in the LICENSE file. | 15 // BSD-style license that can be found in the LICENSE file. |
| (...skipping 29333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 29348 _position = nextPosition; | 29349 _position = nextPosition; |
| 29349 return true; | 29350 return true; |
| 29350 } | 29351 } |
| 29351 _current = null; | 29352 _current = null; |
| 29352 _position = _array.length; | 29353 _position = _array.length; |
| 29353 return false; | 29354 return false; |
| 29354 } | 29355 } |
| 29355 | 29356 |
| 29356 T get current => _current; | 29357 T get current => _current; |
| 29357 } | 29358 } |
| OLD | NEW |