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

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

Issue 11233061: Revert "Parts must start with 'part of'" and "Attempt to fix VM build" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 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
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 part of LibraryPrefixes;
5 4
6 class LibraryPrefixes { 5 class LibraryPrefixes {
7 6
8 static void main(var expectEquals) { 7 static void main(var expectEquals) {
9 var a = Constants.PI; 8 var a = Constants.PI;
10 var b = other.Constants.PI; 9 var b = other.Constants.PI;
11 expectEquals(3.14, a); 10 expectEquals(3.14, a);
12 expectEquals(3.14, b); 11 expectEquals(3.14, b);
13 12
14 expectEquals(1, Constants.foo); 13 expectEquals(1, Constants.foo);
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 expectEquals(9, new E().toto(7)()); 61 expectEquals(9, new E().toto(7)());
63 expectEquals(16, new other.E().toto(11)()); 62 expectEquals(16, new other.E().toto(11)());
64 63
65 expectEquals(111, (new E.fun(100).f)()); 64 expectEquals(111, (new E.fun(100).f)());
66 expectEquals(1313, (new other.E.fun(1300).f)()); 65 expectEquals(1313, (new other.E.fun(1300).f)());
67 66
68 expectEquals(999, E.fooo(900)()); 67 expectEquals(999, E.fooo(900)());
69 expectEquals(2048, other.E.fooo(1024)()); 68 expectEquals(2048, other.E.fooo(1024)());
70 } 69 }
71 } 70 }
OLDNEW
« no previous file with comments | « dart/tests/language/library_negative_test.dart ('k') | dart/tests/language/library_prefixes.lib » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698