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

Unified Diff: tests/language/vm/type_propagation_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/vm/type_propagation_test.dart
diff --git a/tests/language/vm/type_propagation_test.dart b/tests/language/vm/type_propagation_test.dart
index e42aca24afdeb8a18f4495b25ab0c3bc93b16e59..6347f349d21e2a962c60990e91ccd0ffb58cbec2 100644
--- a/tests/language/vm/type_propagation_test.dart
+++ b/tests/language/vm/type_propagation_test.dart
@@ -28,7 +28,9 @@ foo(x) {
}
}
-class Y { var f = null; }
+class Y {
+ var f = null;
+}
bar(y) {
var x = y.f;
@@ -39,8 +41,7 @@ bar(y) {
}
}
-
-main () {
+main() {
var o = new Y();
o.f = new C();
bar(o);

Powered by Google App Engine
This is Rietveld 408576698