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

Unified Diff: tests/language/third_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/third_test.dart
diff --git a/tests/language/third_test.dart b/tests/language/third_test.dart
index 28c1b0fecefeb87c73188da7017195c2f37483b9..1f395d1537dc9f4f4edf0c914d1079daae4310bb 100644
--- a/tests/language/third_test.dart
+++ b/tests/language/third_test.dart
@@ -13,14 +13,15 @@ class A extends B {
return s;
}
- A(x, y) : super(y), a = x { }
+ A(x, y)
+ : super(y),
+ a = x {}
value() {
return a + b + foo();
}
}
-
class B {
var b;
static var s;
@@ -38,7 +39,6 @@ class B {
}
}
-
class ThirdTest {
static testMain() {
var a = new A(1, 2);
@@ -46,7 +46,7 @@ class ThirdTest {
A.s = 4;
B.s = 5;
Expect.equals(26, a.value() + b.value());
- }
+ }
}
main() {

Powered by Google App Engine
This is Rietveld 408576698