Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Side by Side Diff: dart/tests/compiler/dart2js/link_test.dart

Issue 341923005: Update imports to use package:compiler and package:try. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Merged with r37512. Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 '../../../sdk/lib/_internal/compiler/implementation/util/util.dart'; 6 import 'package:compiler/implementation/util/util.dart';
7 import '../../../sdk/lib/_internal/compiler/implementation/util/util_implementat ion.dart'; 7 import 'package:compiler/implementation/util/util_implementation.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([]);
17 testFromList([0]); 17 testFromList([0]);
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « dart/tests/compiler/dart2js/least_upper_bound_test.dart ('k') | dart/tests/compiler/dart2js/list_tracer2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698