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

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

Issue 694353007: Move dart2js from sdk/lib/_internal/compiler to pkg/compiler (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « tests/compiler/dart2js/link_helper.dart ('k') | tests/compiler/dart2js/list_tracer2_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 '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
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 | « tests/compiler/dart2js/link_helper.dart ('k') | tests/compiler/dart2js/list_tracer2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698