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

Unified Diff: tests/isolate/isolate_import_negative_test.dart

Issue 27215002: Very simple version of Isolates. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. 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
« no previous file with comments | « tests/isolate/isolate_complex_messages_test.dart ('k') | tests/isolate/isolate_negative_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/isolate/isolate_import_negative_test.dart
diff --git a/tests/isolate/isolate_import_negative_test.dart b/tests/isolate/isolate_import_negative_test.dart
index 0f5a0421abd54c70e5685e2a62a4292ee43f49be..1ea91022d8bb00d43e89470c90c5255cc36437b7 100644
--- a/tests/isolate/isolate_import_negative_test.dart
+++ b/tests/isolate/isolate_import_negative_test.dart
@@ -6,9 +6,9 @@ library IsolateImportNegativeTest;
// Omitting the following import is an error:
// import 'dart:isolate';
-void entry() {}
+void entry(msg) {}
main() {
- spawnFunction(entry);
+ Isolate.spawn(entry);
}
« no previous file with comments | « tests/isolate/isolate_complex_messages_test.dart ('k') | tests/isolate/isolate_negative_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698