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

Unified Diff: tests/isolate/kill_test.dart

Issue 1074223002: Update Isolate API. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typo Created 5 years, 8 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/kill_self_test.dart ('k') | tests/isolate/ondone_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/isolate/kill_test.dart
diff --git a/tests/isolate/kill_test.dart b/tests/isolate/kill_test.dart
index d0da5abc6c29634777d8fcbd156f6fddfb80341e..0a0ba85d2def2b48a12760423f4dbc1d86c40821 100644
--- a/tests/isolate/kill_test.dart
+++ b/tests/isolate/kill_test.dart
@@ -26,7 +26,7 @@ void main() {
reply.handler = (v) {
result.add(v);
if (v == 2) {
- isolate.kill(Isolate.IMMEDIATE);
+ isolate.kill(priority: Isolate.IMMEDIATE);
}
echoPort.send(v - 1);
};
« no previous file with comments | « tests/isolate/kill_self_test.dart ('k') | tests/isolate/ondone_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698