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

Unified Diff: pkg/kernel/testcases/closures/type_variables.dart

Issue 2747113004: Run dartfmt on kernel package (Closed)
Patch Set: Created 3 years, 9 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: pkg/kernel/testcases/closures/type_variables.dart
diff --git a/pkg/kernel/testcases/closures/type_variables.dart b/pkg/kernel/testcases/closures/type_variables.dart
index cdfd4c21e86ffed09fe2b9a57a54bad23e7bb2d5..5883e7372d6e9555d17b909df0db6f4ba372eca6 100644
--- a/pkg/kernel/testcases/closures/type_variables.dart
+++ b/pkg/kernel/testcases/closures/type_variables.dart
@@ -4,11 +4,11 @@
class C<T, S> {
foo(S s) => (T x) {
- T y = x;
- Object z = y;
- C<T, S> self = this;
- return z as T;
- };
+ T y = x;
+ Object z = y;
+ C<T, S> self = this;
+ return z as T;
+ };
bar() {
C<T, S> self = this;
@@ -23,6 +23,7 @@ class C<T, S> {
C<T, S> self = new C<T, S>.internal();
return self;
}
+
return local();
}
C.internal();
« no previous file with comments | « pkg/kernel/testcases/closures/for_variable_capture_test.dart ('k') | pkg/kernel/testcases/input/DeltaBlue.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698