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

Unified Diff: pkg/kernel/testcases/input/uninitialized_fields.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
« no previous file with comments | « pkg/kernel/testcases/input/store_load.dart ('k') | pkg/kernel/testcases/input/void-methods.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/kernel/testcases/input/uninitialized_fields.dart
diff --git a/pkg/kernel/testcases/input/uninitialized_fields.dart b/pkg/kernel/testcases/input/uninitialized_fields.dart
index 5ff04ff8d52d7520701d147e12aaa71ae74b9e5c..b8d240c78dbdf9d47b003c41de969a2f2550bebe 100644
--- a/pkg/kernel/testcases/input/uninitialized_fields.dart
+++ b/pkg/kernel/testcases/input/uninitialized_fields.dart
@@ -4,15 +4,18 @@
class Uninitialized {
int x;
}
+
class PartiallyInitialized {
int x;
PartiallyInitialized(this.x);
PartiallyInitialized.noInitializer();
}
+
class Initialized {
int x;
Initialized(this.x);
}
+
class Forwarding {
int x;
Forwarding.initialize(this.x);
@@ -22,6 +25,4 @@ class Forwarding {
int uninitializedTopLevel;
int initializedTopLevel = 4;
-main() {
-
-}
+main() {}
« no previous file with comments | « pkg/kernel/testcases/input/store_load.dart ('k') | pkg/kernel/testcases/input/void-methods.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698