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

Unified Diff: tests/compiler/dart2js_extra/this_redirecting_constructor_test.dart

Issue 2345083003: dart2js: run dartfmt on tests (Closed)
Patch Set: 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/this_redirecting_constructor_test.dart
diff --git a/tests/compiler/dart2js_extra/this_redirecting_constructor_test.dart b/tests/compiler/dart2js_extra/this_redirecting_constructor_test.dart
index 101aa1cf01c828a84c14e3a7f3f3cd9b9dd9b667..feeedd434efc85ea90cbe488f549278879786c91 100644
--- a/tests/compiler/dart2js_extra/this_redirecting_constructor_test.dart
+++ b/tests/compiler/dart2js_extra/this_redirecting_constructor_test.dart
@@ -10,9 +10,13 @@ import "package:expect/expect.dart";
class C {
var x;
- C() { x = 1; }
- C.C() { x = 2; }
- C.redirecting(): this.C();
+ C() {
+ x = 1;
+ }
+ C.C() {
+ x = 2;
+ }
+ C.redirecting() : this.C();
}
main() {

Powered by Google App Engine
This is Rietveld 408576698