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

Side by Side Diff: tests/language/deferred_in_isolate_app.dart

Issue 394343003: - Properly setup an Api scope before calling out through the API. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 5 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
(Empty)
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
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.
4
5 import 'deferred_in_isolate_lib.dart' deferred as test;
6
7 void main(args, msg) {
8 assert(args != null);
9 assert(args.length == 1);
10 assert(msg != null);
11 assert(msg.length == 1);
12
13 var expectedMsg = args[0];
14 var replyPort = msg[0];
15
16 try {
17 print("BeforeLibraryLoading");
18
19 test.loadLibrary().then((_) {
20 var obj = new test.DeferredObj(expectedMsg);
21 replyPort.send(obj.toString());
22 }).catchError((error) {
23 replyPort.send("Error from isolate:\n$error");
Vyacheslav Egorov (Google) 2014/07/17 12:38:27 something with indentation here.
Ivan Posva 2014/07/17 12:45:12 Done.
24 });
25 } catch (exception, stacktrace) {
26 replyPort.send("Exception from isolate:\n$exception\n$stacktrace");
27 }
28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698