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

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

Issue 14791005: BREAKING CHANGE: enforce part of directive (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 7 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 | « tests/language/library1_lib.dart ('k') | tests/language/library_prefixes_test1.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 part of LibraryPrefixes.lib;
6
5 class LibraryPrefixes { 7 class LibraryPrefixes {
6 8
7 static void main(var expectEquals) { 9 static void main(var expectEquals) {
8 var a = Constants.PI; 10 var a = Constants.PI;
9 var b = other.Constants.PI; 11 var b = other.Constants.PI;
10 expectEquals(3.14, a); 12 expectEquals(3.14, a);
11 expectEquals(3.14, b); 13 expectEquals(3.14, b);
12 14
13 expectEquals(1, Constants.foo); 15 expectEquals(1, Constants.foo);
14 expectEquals(2, other.Constants.foo); 16 expectEquals(2, other.Constants.foo);
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 expectEquals(9, new E().toto(7)()); 63 expectEquals(9, new E().toto(7)());
62 expectEquals(16, new other.E().toto(11)()); 64 expectEquals(16, new other.E().toto(11)());
63 65
64 expectEquals(111, (new E.fun(100).f)()); 66 expectEquals(111, (new E.fun(100).f)());
65 expectEquals(1313, (new other.E.fun(1300).f)()); 67 expectEquals(1313, (new other.E.fun(1300).f)());
66 68
67 expectEquals(999, E.fooo(900)()); 69 expectEquals(999, E.fooo(900)());
68 expectEquals(2048, other.E.fooo(1024)()); 70 expectEquals(2048, other.E.fooo(1024)());
69 } 71 }
70 } 72 }
OLDNEW
« no previous file with comments | « tests/language/library1_lib.dart ('k') | tests/language/library_prefixes_test1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698