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

Unified Diff: tests/corelib_strong/set_removeAll_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/corelib_strong/set_removeAll_test.dart
diff --git a/tests/corelib_strong/set_removeAll_test.dart b/tests/corelib_strong/set_removeAll_test.dart
index abd4a2d343a4fdb25c464231fa20acef5a9e50dc..12dfa397408150978b731a33d6d8863e18377770 100644
--- a/tests/corelib_strong/set_removeAll_test.dart
+++ b/tests/corelib_strong/set_removeAll_test.dart
@@ -4,14 +4,19 @@
import "package:expect/expect.dart";
-class A { const A(); }
-class B extends A { const B(); }
+class A {
+ const A();
+}
+
+class B extends A {
+ const B();
+}
main() {
var set1 = new Set<B>();
set1.add(const B());
var set2 = new Set<B>();
- var list = <B>[ const B() ];
+ var list = <B>[const B()];
var set3 = list.toSet();
var sets = [set1, set2, set3];

Powered by Google App Engine
This is Rietveld 408576698