Chromium Code Reviews| 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); |
| + }); |
| +} |