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 import "package:expect/expect.dart"; | 5 import "package:expect/expect.dart"; |
6 import 'package:compiler/implementation/util/util.dart'; | 6 import 'package:compiler/src/util/util.dart'; |
7 import 'link_helper.dart'; | 7 import 'link_helper.dart'; |
8 | 8 |
9 main() { | 9 main() { |
10 test(const Link<Comparable>().prepend('three').prepend(2).prepend('one'), | 10 test(const Link<Comparable>().prepend('three').prepend(2).prepend('one'), |
11 ['one', 2, 'three']); | 11 ['one', 2, 'three']); |
12 test(const Link<Comparable>().prepend(3).prepend('two').prepend(1), | 12 test(const Link<Comparable>().prepend(3).prepend('two').prepend(1), |
13 [1, 'two', 3]); | 13 [1, 'two', 3]); |
14 test(const Link<String>().prepend('single'), ['single']); | 14 test(const Link<String>().prepend('single'), ['single']); |
15 test(const Link(), []); | 15 test(const Link(), []); |
16 testFromList([]); | 16 testFromList([]); |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 Expect.isFalse(link.isEmpty); | 54 Expect.isFalse(link.isEmpty); |
55 Expect.equals(i, link.head); | 55 Expect.equals(i, link.head); |
56 } | 56 } |
57 Expect.isTrue(nonEmptyLink.skip(6).isEmpty); | 57 Expect.isTrue(nonEmptyLink.skip(6).isEmpty); |
58 Expect.throws(() => nonEmptyLink.skip(7), (e) => e is RangeError); | 58 Expect.throws(() => nonEmptyLink.skip(7), (e) => e is RangeError); |
59 | 59 |
60 var emptyLink = const Link(); | 60 var emptyLink = const Link(); |
61 Expect.isTrue(emptyLink.skip(0).isEmpty); | 61 Expect.isTrue(emptyLink.skip(0).isEmpty); |
62 Expect.throws(() => emptyLink.skip(1), (e) => e is RangeError); | 62 Expect.throws(() => emptyLink.skip(1), (e) => e is RangeError); |
63 } | 63 } |
OLD | NEW |