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

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

Issue 8764019: - "#library warning" fixit: Add #library where it could be expected. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/tests/
Patch Set: Created 9 years 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.dart");
7 #import("../../isolate/src/TestFramework.dart"); 8 #import("../../isolate/src/TestFramework.dart");
8 9
9 /* class = Mint (tests/stub-generator/src/MintMakerPromiseWithStubsTest.dart/Min tMakerPromiseWithStubsTest.dart: 9) */ 10 /* class = Mint (tests/stub-generator/src/MintMakerPromiseWithStubsTest.dart/Min tMakerPromiseWithStubsTest.dart: 9) */
10 11
11 interface Mint$Proxy extends Proxy { 12 interface Mint$Proxy extends Proxy {
12 Purse$Proxy createPurse(int balance); 13 Purse$Proxy createPurse(int balance);
13 } 14 }
14 15
15 class Mint$ProxyImpl extends ProxyImpl implements Mint$Proxy { 16 class Mint$ProxyImpl extends ProxyImpl implements Mint$Proxy {
16 Mint$ProxyImpl(Promise<SendPort> port) : super.forReply(port) { } 17 Mint$ProxyImpl(Promise<SendPort> port) : super.forReply(port) { }
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 expect.succeeded(); 246 expect.succeeded();
246 print("##DONE##"); 247 print("##DONE##");
247 }); 248 });
248 } 249 }
249 250
250 } 251 }
251 252
252 main() { 253 main() {
253 runTests([MintMakerPromiseWithStubsTest.testMain]); 254 runTests([MintMakerPromiseWithStubsTest.testMain]);
254 } 255 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698