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

Side by Side Diff: dart/editor/tools/plugins/com.google.dart.tools.core_test/test_data/Money/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 4
5 library Money; 5 #library("Money");
6 6
7 #source("complex_money.dart"); 7 #source("complex_money.dart");
8 #source("currency_exchange.dart"); 8 #source("currency_exchange.dart");
9 #source("currency.dart"); 9 #source("currency.dart");
10 #source("simple_money.dart"); 10 #source("simple_money.dart");
11 11
12 /** 12 /**
13 * The interface [Money] defines the behavior of objects representing a monitary 13 * The interface [Money] defines the behavior of objects representing a monitary
14 * quantity. 14 * quantity.
15 */ 15 */
16 interface Money { 16 interface Money {
17 Money operator +(Money money); 17 Money operator +(Money money);
18 18
19 Money addComplexMoney(ComplexMoney money); 19 Money addComplexMoney(ComplexMoney money);
20 20
21 Money addSimpleMoney(SimpleMoney money); 21 Money addSimpleMoney(SimpleMoney money);
22 } 22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698