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

Unified Diff: tests/isolate/illegal_msg_test.dart

Issue 40023002: Make dart2js Isolate.spawn work. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove whitespace changes to dart2js_html. Created 7 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 side-by-side diff with in-line comments
Download patch
Index: tests/isolate/illegal_msg_test.dart
diff --git a/tests/isolate/illegal_msg_test.dart b/tests/isolate/illegal_msg_test.dart
index 422ae39a55d48705ccbd60a907810e77363a62ab..2674696958cd35907ef46b152068608a920025f4 100644
--- a/tests/isolate/illegal_msg_test.dart
+++ b/tests/isolate/illegal_msg_test.dart
@@ -19,7 +19,7 @@ echo(sendPort) {
main() {
ReceivePort port = new ReceivePort();
- Future spawn = Isolate.spawn(echo, port.sendPort);
+ Isolate.spawn(echo, port.sendPort);
var caught_exception = false;
var stream = port.asBroadcastStream();
asyncStart();

Powered by Google App Engine
This is Rietveld 408576698