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

Unified Diff: tests/isolate/spawn_uri_nested_child1_vm_isolate.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 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
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 867cae311b2228f5d071ba5d1dba22eecf1bfdf1..60083570f279057053f0386aa29a379eab726476 100644
--- a/tests/isolate/spawn_uri_nested_child1_vm_isolate.dart
+++ b/tests/isolate/spawn_uri_nested_child1_vm_isolate.dart
@@ -6,6 +6,7 @@
// Note: the following comment is used by test.dart to additionally compile the
// other isolate's code.
library NestedSpawnUriChild1Library;
+
import 'dart:isolate';
main(List<String> args, message) {
@@ -15,8 +16,8 @@ main(List<String> args, message) {
port2.close();
});
- Isolate.spawnUri(Uri.parse('spawn_uri_nested_child2_vm_isolate.dart'),
- ['hi'], port2.sendPort);
+ Isolate.spawnUri(Uri.parse('spawn_uri_nested_child2_vm_isolate.dart'), ['hi'],
+ port2.sendPort);
var data = message[0];
var replyTo = message[1];

Powered by Google App Engine
This is Rietveld 408576698