OLD | NEW |
1 /// The Dart HTML library. | 1 /// The Dart HTML library. |
2 library dart.dom.html; | 2 library dart.dom.html; |
3 | 3 |
4 import 'dart:async'; | 4 import 'dart:async'; |
5 import 'dart:collection'; | 5 import 'dart:collection'; |
6 import 'dart:_collection-dev'; | 6 import 'dart:_collection-dev'; |
7 import 'dart:html_common'; | 7 import 'dart:html_common'; |
8 import 'dart:indexed_db'; | 8 import 'dart:indexed_db'; |
9 import 'dart:isolate'; | 9 import 'dart:isolate'; |
10 import 'dart:json' as json; | 10 import 'dart:json' as json; |
11 import 'dart:math'; | 11 import 'dart:math'; |
12 import 'dart:typeddata'; | 12 import 'dart:typed_data'; |
13 import 'dart:svg' as svg; | 13 import 'dart:svg' as svg; |
14 import 'dart:web_audio' as web_audio; | 14 import 'dart:web_audio' as web_audio; |
15 import 'dart:web_gl' as gl; | 15 import 'dart:web_gl' as gl; |
16 import 'dart:web_sql'; | 16 import 'dart:web_sql'; |
17 import 'dart:_js_helper' show convertDartClosureToJS, Creates, JavaScriptIndexin
gBehavior, JSName, Null, Returns; | 17 import 'dart:_js_helper' show convertDartClosureToJS, Creates, JavaScriptIndexin
gBehavior, JSName, Null, Returns; |
18 import 'dart:_isolate_helper' show IsolateNatives; | 18 import 'dart:_isolate_helper' show IsolateNatives; |
19 import 'dart:_foreign_helper' show JS; | 19 import 'dart:_foreign_helper' show JS; |
20 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 20 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
21 // for details. All rights reserved. Use of this source code is governed by a | 21 // for details. All rights reserved. Use of this source code is governed by a |
22 // BSD-style license that can be found in the LICENSE file. | 22 // BSD-style license that can be found in the LICENSE file. |
(...skipping 29883 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
29906 _position = nextPosition; | 29906 _position = nextPosition; |
29907 return true; | 29907 return true; |
29908 } | 29908 } |
29909 _current = null; | 29909 _current = null; |
29910 _position = _array.length; | 29910 _position = _array.length; |
29911 return false; | 29911 return false; |
29912 } | 29912 } |
29913 | 29913 |
29914 T get current => _current; | 29914 T get current => _current; |
29915 } | 29915 } |
OLD | NEW |