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

Unified Diff: tests/standalone/http_launch_data/http_isolate_main.dart

Issue 16092007: HTTP loading tests and package root support (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: tests/standalone/http_launch_data/http_isolate_main.dart
diff --git a/tests/standalone/http_launch_data/http_isolate_main.dart b/tests/standalone/http_launch_data/http_isolate_main.dart
new file mode 100644
index 0000000000000000000000000000000000000000..cd542000393e3ed6d5ec1994d69eb89d75223699
--- /dev/null
+++ b/tests/standalone/http_launch_data/http_isolate_main.dart
@@ -0,0 +1,7 @@
+import 'dart:isolate';
siva 2013/05/31 20:36:29 Missing copyright stuff.
Cutch 2013/05/31 22:37:19 Done.
+
+main() {
+ port.receive((message, replyTo) {
+ replyTo.call(message);
+ });
+}

Powered by Google App Engine
This is Rietveld 408576698