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

Unified Diff: tests/language_strong/mixin_regress_11398_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/language_strong/mixin_regress_11398_test.dart
diff --git a/tests/language_strong/mixin_regress_11398_test.dart b/tests/language_strong/mixin_regress_11398_test.dart
index 0336db41f4877ff831200a75a2fe4dfcffc8feeb..31fe089d16bb3af6cf52187ebb1a9d6f9e2b7ea4 100644
--- a/tests/language_strong/mixin_regress_11398_test.dart
+++ b/tests/language_strong/mixin_regress_11398_test.dart
@@ -28,15 +28,16 @@ abstract class DelegateMixin {
abstract class HasValueMixin implements Delegate {
String _value;
- set value(String value) { _value = invoke(value); }
+ set value(String value) {
+ _value = invoke(value);
+ }
+
String get value => _value;
}
-class HasValueA extends Object with HasValueMixin, DelegateMixin {
-}
+class HasValueA extends Object with HasValueMixin, DelegateMixin {}
-class HasValueB extends Object with DelegateMixin, HasValueMixin {
-}
+class HasValueB extends Object with DelegateMixin, HasValueMixin {}
class HasValueC extends Object with HasValueMixin {
String invoke(String value) => value;

Powered by Google App Engine
This is Rietveld 408576698