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

Unified Diff: tests/language/new_statement_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/new_statement_test.dart
diff --git a/tests/language/new_statement_test.dart b/tests/language/new_statement_test.dart
index fea8cb64b344362dde32bd2963948d7176e109a7..62fe4352830d35a3ac479a8af00a9f1618b66f51 100644
--- a/tests/language/new_statement_test.dart
+++ b/tests/language/new_statement_test.dart
@@ -11,7 +11,9 @@ class A {
static int c;
static int d;
- A(int x, int y) : a = x, b = y {
+ A(int x, int y)
+ : a = x,
+ b = y {
A.c = x;
A.d = y;
}
@@ -25,7 +27,6 @@ class NewStatementTest {
}
}
-
main() {
NewStatementTest.testMain();
}

Powered by Google App Engine
This is Rietveld 408576698