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

Unified Diff: tests/isolate/spawn_uri_nested_child1_vm_isolate.dart

Issue 43663003: dart2js. (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
Index: tests/isolate/spawn_uri_nested_child1_vm_isolate.dart
diff --git a/tests/isolate/spawn_uri_nested_child1_vm_isolate.dart b/tests/isolate/spawn_uri_nested_child1_vm_isolate.dart
index cc638780f2365de782f19e9edcee607ff44f2aea..867cae311b2228f5d071ba5d1dba22eecf1bfdf1 100644
--- a/tests/isolate/spawn_uri_nested_child1_vm_isolate.dart
+++ b/tests/isolate/spawn_uri_nested_child1_vm_isolate.dart
@@ -11,6 +11,7 @@ import 'dart:isolate';
main(List<String> args, message) {
ReceivePort port2 = new ReceivePort();
port2.listen((msg) {
+ if (msg != "re: hi") throw "Bad response: $msg";
port2.close();
});

Powered by Google App Engine
This is Rietveld 408576698