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

Unified Diff: pkg/kernel/testcases/input/void-methods.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/input/void-methods.dart
diff --git a/pkg/kernel/testcases/input/void-methods.dart b/pkg/kernel/testcases/input/void-methods.dart
index 36f4e72735d6edbd37a14de25a79cdfd50627ad2..2d847fa3d781367725dfd0bf2d14368c1689a598 100644
--- a/pkg/kernel/testcases/input/void-methods.dart
+++ b/pkg/kernel/testcases/input/void-methods.dart
@@ -1,7 +1,7 @@
class Foo {
- List list = [1,2,3];
+ List list = [1, 2, 3];
set first(x) => list[0] = x;
- operator[]=(x,y) => list[x] = y;
+ operator []=(x, y) => list[x] = y;
void clear() => list.clear();
}
« no previous file with comments | « pkg/kernel/testcases/input/uninitialized_fields.dart ('k') | pkg/kernel/testcases/reify/native_types_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698