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

Side by Side Diff: tests/stub-generator/src/MintMakerPromiseWithStubsTest-generatedTest.dart

Issue 9113043: Implement Double.{toString, toStringAsExponential, toStringAsPrecision} (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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
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 // IsolateStubs=MintMakerPromiseWithStubsTest.dart:Mint,Purse 5 // IsolateStubs=MintMakerPromiseWithStubsTest.dart:Mint,Purse
6 6
7 #library("MintMakerPromiseWithStubsTest-generatedTest"); 7 #library("MintMakerPromiseWithStubsTest-generatedTest");
8 #import("../../isolate/src/TestFramework.dart"); 8 #import("../../../tests/isolate/src/TestFramework.dart");
9 9
10 /* class = Mint (tests/stub-generator/src/MintMakerPromiseWithStubsTest.dart/Min tMakerPromiseWithStubsTest.dart: 10) */ 10 /* class = Mint (tests/stub-generator/src/MintMakerPromiseWithStubsTest.dart/Min tMakerPromiseWithStubsTest.dart: 10) */
11 11
12 interface Mint$Proxy extends Proxy { 12 interface Mint$Proxy extends Proxy {
13 Purse$Proxy createPurse(int balance); 13 Purse$Proxy createPurse(int balance);
14 } 14 }
15 15
16 class Mint$ProxyImpl extends ProxyImpl implements Mint$Proxy { 16 class Mint$ProxyImpl extends ProxyImpl implements Mint$Proxy {
17 Mint$ProxyImpl(Promise<SendPort> port) : super.forReply(port) { } 17 Mint$ProxyImpl(Promise<SendPort> port) : super.forReply(port) { }
18 Mint$ProxyImpl.forIsolate(Proxy isolate) : super.forReply(isolate.call([null]) ) { } 18 Mint$ProxyImpl.forIsolate(Proxy isolate) : super.forReply(isolate.call([null]) ) { }
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 expect.succeeded(); 246 expect.succeeded();
247 print("##DONE##"); 247 print("##DONE##");
248 }); 248 });
249 } 249 }
250 250
251 } 251 }
252 252
253 main() { 253 main() {
254 runTests([MintMakerPromiseWithStubsTest.testMain]); 254 runTests([MintMakerPromiseWithStubsTest.testMain]);
255 } 255 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698