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

Unified Diff: tests/lib/mirrors/delegate_class_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/lib/mirrors/delegate_class_test.dart
diff --git a/tests/lib/mirrors/delegate_class_test.dart b/tests/lib/mirrors/delegate_class_test.dart
index e0725eb7ff0679b46da3dbb621049c2a91439a85..114faa56bd8b8f829826d1f3e34b6975474ec4a6 100644
--- a/tests/lib/mirrors/delegate_class_test.dart
+++ b/tests/lib/mirrors/delegate_class_test.dart
@@ -11,13 +11,14 @@ import 'package:expect/expect.dart';
class C {
static method(a, b, c) => "$a-$b-$c";
- static methodWithNamed(a, {b:'B', c}) => "$a-$b-$c";
- static methodWithOpt(a, [b, c='C']) => "$a-$b-$c";
+ static methodWithNamed(a, {b: 'B', c}) => "$a-$b-$c";
+ static methodWithOpt(a, [b, c = 'C']) => "$a-$b-$c";
static get getter => 'g';
static set setter(x) {
- field = x*2;
+ field = x * 2;
return 'unobservable value';
}
+
static var field;
}

Powered by Google App Engine
This is Rietveld 408576698