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

Side by Side Diff: tests/standalone/package/sibling_isolate.dart

Issue 11195017: Allow package: imports inside isolates (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addresses Siva's comments. Created 8 years, 2 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
2 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3 // for details. All rights reserved. Use of this source code is governed by a
4 // BSD-style license that can be found in the LICENSE file.
5
6 library sibling_isolate;
7
8 import 'package:shared.dart'as shared;
9 import 'dart:isolate';
10
11 // This file is spawned from package_isolate_test.dart
12 main() {
13 shared.output = 'isolate';
14 port.receive((msg, replyTo) {
15 replyTo.send(shared.output);
16 });
17 }
OLDNEW
« no previous file with comments | « tests/standalone/package/package_isolate_test.dart ('k') | tests/standalone/package/test_folder/folder_isolate.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698