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

Unified Diff: tests/standalone/regress_28854_1_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_1_test.dart
diff --git a/tests/standalone/regress_28854_1_test.dart b/tests/standalone/regress_28854_1_test.dart
index 717545849d35ef2f0b0f31fbafeedae52f9b1ea5..a0fd3d63e81e2c78fe953bfcc523d556741a68ef 100644
--- a/tests/standalone/regress_28854_1_test.dart
+++ b/tests/standalone/regress_28854_1_test.dart
@@ -6,9 +6,7 @@ library regress;
import 'dart:isolate';
-abstract class N {
-
-}
+abstract class N {}
class J extends N {
final String s;
@@ -23,7 +21,7 @@ class K extends N {
void isolate(SendPort port) {
port.send(N);
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');
@@ -40,4 +38,3 @@ main() async {
};
var iso = await Isolate.spawn(isolate, recv.sendPort);
}
-

Powered by Google App Engine
This is Rietveld 408576698