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

Unified Diff: tests/language/deferred_static_seperate_lib1.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_static_seperate_lib1.dart
diff --git a/tests/language/deferred_static_seperate_lib1.dart b/tests/language/deferred_static_seperate_lib1.dart
index 92965237f97b07e405526d14bf6f9c9d4582d3b8..f8205d8c722836fc37e0582f1702c8cb5b1f47f3 100644
--- a/tests/language/deferred_static_seperate_lib1.dart
+++ b/tests/language/deferred_static_seperate_lib1.dart
@@ -13,11 +13,12 @@ var x = const ConstClass(const ConstClass(1));
class C {
static foo() {
- () {} (); // Hack to avoid inlining.
+ () {}(); // Hack to avoid inlining.
return 1;
}
+
bar() {
- () {} (); // Hack to avoid inlining.
+ () {}(); // Hack to avoid inlining.
return 1;
}
}
@@ -43,9 +44,11 @@ class C4 {
}
class C5 {
- static const foo = const [const {1: 3}];
+ static const foo = const [
+ const {1: 3}
+ ];
bar() {
- () {} (); // Hack to avoid inlining.
+ () {}(); // Hack to avoid inlining.
return 1;
}
-}
+}

Powered by Google App Engine
This is Rietveld 408576698