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); |
} |
- |