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

Unified Diff: tests/language/deferred_global_lib.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/language/deferred_global_lib.dart
diff --git a/tests/language/deferred_global_lib.dart b/tests/language/deferred_global_lib.dart
index a8fdca56326f77e60ffcc1f53940d6b179b2c364..d4f3f05a034d0963412c03a3ae59bd0ce921655f 100644
--- a/tests/language/deferred_global_lib.dart
+++ b/tests/language/deferred_global_lib.dart
@@ -24,5 +24,10 @@ readFinalConstGlobal() => finalConstGlobal;
readFinalNonConstGlobal() => finalNonConstGlobal;
readLazyConstGlobal() => lazyConstGlobal;
readLazyNonConstGlobal() => lazyNonConstGlobal;
-writeLazyConstGlobal(x) { lazyConstGlobal = x; }
-writeLazyNonConstGlobal(x) { lazyNonConstGlobal = x; }
+writeLazyConstGlobal(x) {
+ lazyConstGlobal = x;
+}
+
+writeLazyNonConstGlobal(x) {
+ lazyNonConstGlobal = x;
+}

Powered by Google App Engine
This is Rietveld 408576698