Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 // IsolateStubs=MintMakerFullyIsolatedTest.dart:Mint,Purse,PowerfulPurse | 5 // IsolateStubs=MintMakerFullyIsolatedTest.dart:Mint,Purse,PowerfulPurse |
| 6 | 6 |
| 7 interface Purse { | 7 interface Purse { |
| 8 Purse(); | 8 Purse(); |
| 9 int queryBalance(); | 9 int queryBalance(); |
| 10 Purse$Proxy sproutPurse(); | 10 Purse$Proxy sproutPurse(); |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 227 Expect.equals(n, results.length); | 227 Expect.equals(n, results.length); |
| 228 print('##DONE##'); | 228 print('##DONE##'); |
| 229 }); | 229 }); |
| 230 } | 230 } |
| 231 } | 231 } |
| 232 | 232 |
| 233 } | 233 } |
| 234 | 234 |
| 235 main() { | 235 main() { |
| 236 MintMakerFullyIsolatedTest.testMain(); | 236 MintMakerFullyIsolatedTest.testMain(); |
| 237 //runTests([MintMakerFullyIsolatedTest.testMain]); | |
|
floitsch
2011/10/21 13:47:39
If you are sure you will work on this in the near
Ben Laurie (Google)
2011/10/21 13:56:58
I am going to do this shortly, but I removed it an
| |
| 237 } | 238 } |
| OLD | NEW |