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

Unified Diff: tests/compiler/dart2js_extra/deferred/deferred_class_library2.dart

Issue 2345083003: dart2js: run dartfmt on tests (Closed)
Patch Set: revert another multipart test Created 4 years, 3 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/compiler/dart2js_extra/deferred/deferred_class_library2.dart
diff --git a/tests/compiler/dart2js_extra/deferred/deferred_class_library2.dart b/tests/compiler/dart2js_extra/deferred/deferred_class_library2.dart
index 82359bcbed28d515ac9bbfe1a059785dac5c341d..fecca5389b7bce370c30b1c3b608cd8d6773fda9 100644
--- a/tests/compiler/dart2js_extra/deferred/deferred_class_library2.dart
+++ b/tests/compiler/dart2js_extra/deferred/deferred_class_library2.dart
@@ -19,7 +19,7 @@ class Constant {
final value;
const Constant(this.value);
- operator==(other) => other is Constant && value == other.value;
+ operator ==(other) => other is Constant && value == other.value;
get hashCode => 0;
}
@@ -35,15 +35,15 @@ class Gee {
Gee([this.c = const Constant(111)]);
const Gee.n321([this.c = const Constant(321)]);
- Gee.n135({ arg: const Constant(135) }) : this.c = arg;
- const Gee.n246({ arg: const Constant(246) }) : this.c = arg;
+ Gee.n135({arg: const Constant(135)}) : this.c = arg;
+ const Gee.n246({arg: const Constant(246)}) : this.c = arg;
const Gee.n888() : this.c = const Constant(888);
const Gee.constant(this.c);
}
class Gee2 extends Gee {
Gee2() : super(const Constant(979));
- const Gee2.n321(): super.n321();
- const Gee2.n151(): super.constant(const Constant(151));
+ const Gee2.n321() : super.n321();
+ const Gee2.n151() : super.constant(const Constant(151));
const Gee2.n888() : super.n888();
}

Powered by Google App Engine
This is Rietveld 408576698