| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 main() { | 5 main() { |
| 6 testWithConstMap(); | 6 testWithConstMap(); |
| 7 testWithNonConstMap(); | 7 testWithNonConstMap(); |
| 8 testWithLinkedMap(); | 8 testWithLinkedMap(); |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 var map = const { 'b': 1, 'a': 2, 'c': 3 }; | 68 var map = const { 'b': 1, 'a': 2, 'c': 3 }; |
| 69 var otherMap = new LinkedHashMap.from(map); | 69 var otherMap = new LinkedHashMap.from(map); |
| 70 Expect.isTrue(otherMap is Map); | 70 Expect.isTrue(otherMap is Map); |
| 71 Expect.isTrue(otherMap is HashMap); | 71 Expect.isTrue(otherMap is HashMap); |
| 72 Expect.isTrue(otherMap is LinkedHashMap); | 72 Expect.isTrue(otherMap is LinkedHashMap); |
| 73 var i = 1; | 73 var i = 1; |
| 74 for (var val in map.getValues()) { | 74 for (var val in map.getValues()) { |
| 75 Expect.equals(i++, val); | 75 Expect.equals(i++, val); |
| 76 } | 76 } |
| 77 } | 77 } |
| OLD | NEW |