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

Side by Side Diff: dart/tests/language/namer_test.dart

Issue 10917035: Remove language directory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 3 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 | « dart/language/namer_test.dart ('k') | no next file » | 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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 // Regression test for a bug in dart2js where global names could 5 // Regression test for a bug in dart2js where global names could
6 // collide. 6 // collide.
7 7
8 var i = 'top level'; 8 var i = 'top level';
9 9
10 var i0 = 'top level zero'; 10 var i0 = 'top level zero';
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 Expect.equals('top level too', j2); 54 Expect.equals('top level too', j2);
55 Expect.equals('top level zero', j0); 55 Expect.equals('top level zero', j0);
56 Expect.equals('B', B.j); 56 Expect.equals('B', B.j);
57 57
58 Expect.equals('top level too', k2); 58 Expect.equals('top level too', k2);
59 Expect.equals('top level zero', k0); 59 Expect.equals('top level zero', k0);
60 Expect.equals('top level', k); 60 Expect.equals('top level', k);
61 Expect.equals('C', C.k); 61 Expect.equals('C', C.k);
62 Expect.equals('top level zero zero', k00); 62 Expect.equals('top level zero zero', k00);
63 } 63 }
OLDNEW
« no previous file with comments | « dart/language/namer_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698