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

Side by Side Diff: dart/editor/tools/plugins/com.google.dart.tools.core_test/test_data/Money/simple_money.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 Money;
5 4
6 /** 5 /**
7 * Instances of the class [SimpleMoney] implement a monetary amount that has a 6 * Instances of the class [SimpleMoney] implement a monetary amount that has a
8 * single currency. 7 * single currency.
9 */ 8 */
10 class SimpleMoney implements Money { 9 class SimpleMoney implements Money {
11 final int amount; 10 final int amount;
12 11
13 final String currency; 12 final String currency;
14 13
(...skipping 29 matching lines...) Expand all
44 } 43 }
45 44
46 int getAmount() { 45 int getAmount() {
47 return amount; 46 return amount;
48 } 47 }
49 48
50 String getCurrency() { 49 String getCurrency() {
51 return currency; 50 return currency;
52 } 51 }
53 } 52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698