Index: tests/language_strong/deferred_static_seperate_lib1.dart |
diff --git a/tests/language_strong/deferred_static_seperate_lib1.dart b/tests/language_strong/deferred_static_seperate_lib1.dart |
index feb293ee0eabc68448cbe975727cc785d1c34e2f..07e9cf5ea0971f9f92728c033d753abeb5767e4a 100644 |
--- a/tests/language_strong/deferred_static_seperate_lib1.dart |
+++ b/tests/language_strong/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; |
} |
-} |
+} |