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

Unified Diff: tests/lib/mirrors/unnamed_mixin_application_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/lib/mirrors/unnamed_mixin_application_test.dart
diff --git a/tests/lib/mirrors/unnamed_mixin_application_test.dart b/tests/lib/mirrors/unnamed_mixin_application_test.dart
index 931bf8e3a73876f41d30256ecb8e972bf4bb57c2..926f739512189f639c9b233dc30c8626b949428c 100644
--- a/tests/lib/mirrors/unnamed_mixin_application_test.dart
+++ b/tests/lib/mirrors/unnamed_mixin_application_test.dart
@@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-/// Test that the forwarding constructors of unnamed mixin applications are
+/// Test that the forwarding constructors of unnamed mixin applications are
/// included for reflection.
library lib;
@@ -14,7 +14,9 @@ class S {
S();
S.anUnusedName();
}
+
class M {}
+
class C extends S with M {
C();
}
@@ -24,4 +26,4 @@ main() {
new C();
// Disable tree shaking making 'S+M#anUnusedName' live.
reflectClass(C);
-}
+}

Powered by Google App Engine
This is Rietveld 408576698