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

Side by Side Diff: frog/tests/leg/src/LinkTest.dart

Issue 9873021: Move frog/leg to lib/compiler/implementation. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 8 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
« no previous file with comments | « frog/presubmit.py ('k') | frog/tests/leg/src/ParserTest.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('../../../leg/util/util.dart'); 5 #import('../../../../lib/compiler/implementation/util/util.dart');
6 #import('../../../leg/util/util_implementation.dart'); 6 #import('../../../../lib/compiler/implementation/util/util_implementation.dart') ;
7 7
8 main() { 8 main() {
9 test(new Link<Comparable>('three').prepend(2).prepend('one'), 9 test(new Link<Comparable>('three').prepend(2).prepend('one'),
10 ['one', 2, 'three']); 10 ['one', 2, 'three']);
11 test(new Link<Comparable>(3).prepend('two').prepend(1), [1, 'two', 3]); 11 test(new Link<Comparable>(3).prepend('two').prepend(1), [1, 'two', 3]);
12 test(new Link<String>('single'), ['single']); 12 test(new Link<String>('single'), ['single']);
13 test(new LinkTail(), []); 13 test(new LinkTail(), []);
14 testFromList([]); 14 testFromList([]);
15 testFromList([0]); 15 testFromList([0]);
16 testFromList([0, 1]); 16 testFromList([0, 1]);
(...skipping 19 matching lines...) Expand all
36 Expect.equals(list[i++], element); 36 Expect.equals(list[i++], element);
37 } 37 }
38 Expect.equals(list.length, i); 38 Expect.equals(list.length, i);
39 i = 0; 39 i = 0;
40 for (; !link.isEmpty(); link = link.tail) { 40 for (; !link.isEmpty(); link = link.tail) {
41 Expect.equals(list[i++], link.head); 41 Expect.equals(list[i++], link.head);
42 } 42 }
43 Expect.equals(list.length, i); 43 Expect.equals(list.length, i);
44 Expect.isTrue(link.isEmpty()); 44 Expect.isTrue(link.isEmpty());
45 } 45 }
OLDNEW
« no previous file with comments | « frog/presubmit.py ('k') | frog/tests/leg/src/ParserTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698