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

Unified Diff: tests/standalone/regress_28854_2_test.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/standalone/regress_28854_2_test.dart
diff --git a/tests/standalone/regress_28854_2_test.dart b/tests/standalone/regress_28854_2_test.dart
index 44893372adfa5b2bf379d74e5681462bde816a0f..6de9741c8127b144274008cec142fc2eb011d93d 100644
--- a/tests/standalone/regress_28854_2_test.dart
+++ b/tests/standalone/regress_28854_2_test.dart
@@ -6,9 +6,7 @@ library regress;
import 'dart:isolate';
-abstract class N<T> {
-
-}
+abstract class N<T> {}
class J extends N<String> {
final String s;
@@ -22,7 +20,7 @@ class K extends N<int> {
void isolate(SendPort port) {
port.send(new J("8" * 4));
- for (int i=0; i<80000; i++) {
+ for (int i = 0; i < 80000; i++) {
port.send(new K(i));
}
port.send('done');
@@ -39,4 +37,3 @@ main() async {
};
var iso = await Isolate.spawn(isolate, recv.sendPort);
}
-

Powered by Google App Engine
This is Rietveld 408576698