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

Unified Diff: tests/language_strong/implicit_closure2_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_strong/implicit_closure2_test.dart
diff --git a/tests/language_strong/implicit_closure2_test.dart b/tests/language_strong/implicit_closure2_test.dart
index 104154a8ef09024b6d08f32e760acb83ce4e92ea..a03f45802e2a9ebb77907eb8c08a240a460a27e1 100644
--- a/tests/language_strong/implicit_closure2_test.dart
+++ b/tests/language_strong/implicit_closure2_test.dart
@@ -12,7 +12,9 @@ class A {
var b;
A() : b = new B();
- foo(i) { return (() => b.foo(i))(); }
+ foo(i) {
+ return (() => b.foo(i))();
+ }
}
main() {
@@ -21,4 +23,3 @@ main() {
var f = a.foo;
Expect.equals(521, f(22));
}
-

Powered by Google App Engine
This is Rietveld 408576698