| 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 28911 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 28926 _position = nextPosition; | 28927 _position = nextPosition; |
| 28927 return true; | 28928 return true; |
| 28928 } | 28929 } |
| 28929 _current = null; | 28930 _current = null; |
| 28930 _position = _array.length; | 28931 _position = _array.length; |
| 28931 return false; | 28932 return false; |
| 28932 } | 28933 } |
| 28933 | 28934 |
| 28934 T get current => _current; | 28935 T get current => _current; |
| 28935 } | 28936 } |
| OLD | NEW |