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

Unified Diff: tests/lib_strong/mirrors/declarations_model.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_strong/mirrors/declarations_model.dart
diff --git a/tests/lib_strong/mirrors/declarations_model.dart b/tests/lib_strong/mirrors/declarations_model.dart
index 353fe1395b912986dd79bd37a56a158e61ccdafd..46a08ce4fcdde31f13f836cbc3b00afce85a2701 100644
--- a/tests/lib_strong/mirrors/declarations_model.dart
+++ b/tests/lib_strong/mirrors/declarations_model.dart
@@ -89,23 +89,24 @@ class Superclass<S> {
Superclass.inheritedGenerativeConstructor(this.inheritedInstanceVariable);
Superclass.inheritedRedirectingConstructor(x)
- : this.inheritedGenerativeConstructor(x*2);
- factory Superclass.inheritedNormalFactory(y)
- => new Superclass.inheritedRedirectingConstructor(y*3);
- factory Superclass.inheritedRedirectingFactory(z)
- = Superclass.inheritedNormalFactory;
+ : this.inheritedGenerativeConstructor(x * 2);
+ factory Superclass.inheritedNormalFactory(y) =>
+ new Superclass.inheritedRedirectingConstructor(y * 3);
+ factory Superclass.inheritedRedirectingFactory(z) =
+ Superclass.inheritedNormalFactory;
Superclass._inheritedGenerativeConstructor(this._inheritedInstanceVariable);
Superclass._inheritedRedirectingConstructor(x)
- : this._inheritedGenerativeConstructor(x*2);
- factory Superclass._inheritedNormalFactory(y)
- => new Superclass._inheritedRedirectingConstructor(y*3);
- factory Superclass._inheritedRedirectingFactory(z)
- = Superclass._inheritedNormalFactory;
+ : this._inheritedGenerativeConstructor(x * 2);
+ factory Superclass._inheritedNormalFactory(y) =>
+ new Superclass._inheritedRedirectingConstructor(y * 3);
+ factory Superclass._inheritedRedirectingFactory(z) =
+ Superclass._inheritedNormalFactory;
}
-abstract class Class<C>
- extends Superclass<C> with Mixin<C> implements Interface<C> {
+abstract class Class<C> extends Superclass<C>
+ with Mixin<C>
+ implements Interface<C> {
operator +(x) => null;
abstractMethod();
@@ -132,15 +133,14 @@ abstract class Class<C>
Class.generativeConstructor(this.instanceVariable)
: super.inheritedGenerativeConstructor(0);
- Class.redirectingConstructor(x)
- : this.generativeConstructor(x*2);
- factory Class.normalFactory(y) => new ConcreteClass(y*3);
+ Class.redirectingConstructor(x) : this.generativeConstructor(x * 2);
+ factory Class.normalFactory(y) => new ConcreteClass(y * 3);
factory Class.redirectingFactory(z) = Class.normalFactory;
Class._generativeConstructor(this._instanceVariable)
: super._inheritedGenerativeConstructor(0);
- Class._redirectingConstructor(x) : this._generativeConstructor(x*2);
- factory Class._normalFactory(y) => new ConcreteClass(y*3);
+ Class._redirectingConstructor(x) : this._generativeConstructor(x * 2);
+ factory Class._normalFactory(y) => new ConcreteClass(y * 3);
factory Class._redirectingFactory(z) = Class._normalFactory;
}

Powered by Google App Engine
This is Rietveld 408576698