| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // Patch file for dart:collection classes. | 5 // Patch file for dart:collection classes. |
| 6 import 'dart:_foreign_helper' show JS; | 6 import 'dart:_foreign_helper' show JS; |
| 7 import 'dart:_js_helper' show | 7 import 'dart:_js_helper' show |
| 8 fillLiteralMap, InternalMap, NoInline, NoSideEffects, NoThrows, patch, | 8 fillLiteralMap, InternalMap, NoInline, NoSideEffects, NoThrows, patch, |
| 9 JsLinkedHashMap, LinkedHashMapCell, LinkedHashMapKeyIterable, | 9 JsLinkedHashMap, LinkedHashMapCell, LinkedHashMapKeyIterable, |
| 10 LinkedHashMapKeyIterator; | 10 LinkedHashMapKeyIterator; |
| (...skipping 1637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1648 } else if (_cell == null) { | 1648 } else if (_cell == null) { |
| 1649 _current = null; | 1649 _current = null; |
| 1650 return false; | 1650 return false; |
| 1651 } else { | 1651 } else { |
| 1652 _current = _cell._element; | 1652 _current = _cell._element; |
| 1653 _cell = _cell._next; | 1653 _cell = _cell._next; |
| 1654 return true; | 1654 return true; |
| 1655 } | 1655 } |
| 1656 } | 1656 } |
| 1657 } | 1657 } |
| OLD | NEW |