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

Unified Diff: tests/corelib_strong/set_intersection_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_intersection_test.dart
diff --git a/tests/corelib_strong/set_intersection_test.dart b/tests/corelib_strong/set_intersection_test.dart
index bdfdda6cd3380fdef4d83f9ccb933d68d7b028b6..2cd8a65acf156bd1a26a97539fb7d63f967c7feb 100644
--- a/tests/corelib_strong/set_intersection_test.dart
+++ b/tests/corelib_strong/set_intersection_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 setOther = new Set<A>();

Powered by Google App Engine
This is Rietveld 408576698