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/lib/mirrors/delegate_library_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_library_test.dart
diff --git a/tests/lib/mirrors/delegate_library_test.dart b/tests/lib/mirrors/delegate_library_test.dart
index f987333fb7a636bc0bd7d974917dd3cbd59ba0c1..f43fec34d5903d8e914d65281306117580dd69e2 100644
--- a/tests/lib/mirrors/delegate_library_test.dart
+++ b/tests/lib/mirrors/delegate_library_test.dart
@@ -10,15 +10,15 @@ import 'dart:mirrors';
import 'package:expect/expect.dart';
method(a, b, c) => "$a-$b-$c";
-methodWithNamed(a, {b:'B', c}) => "$a-$b-$c";
-methodWithOpt(a, [b, c='C']) => "$a-$b-$c";
+methodWithNamed(a, {b: 'B', c}) => "$a-$b-$c";
+methodWithOpt(a, [b, c = 'C']) => "$a-$b-$c";
get getter => 'g';
set setter(x) {
- field = x*2;
+ field = x * 2;
return 'unobservable value';
}
-var field;
+var field;
class Proxy {
var targetMirror;

Powered by Google App Engine
This is Rietveld 408576698