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

Unified Diff: tests/language/compile_time_constant_r_test.dart

Issue 2770063002: Revert "Format all multitests" (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: tests/language/compile_time_constant_r_test.dart
diff --git a/tests/language/compile_time_constant_r_test.dart b/tests/language/compile_time_constant_r_test.dart
index 40e651a354aa82b23b4dce3cd95bba6663da48c2..060c5bbf4cae422f18d2f14800036fd4f6b82622 100644
--- a/tests/language/compile_time_constant_r_test.dart
+++ b/tests/language/compile_time_constant_r_test.dart
@@ -4,19 +4,17 @@
const x =
throw // //# 01: compile-time error
- "x";
+ "x";
-const y = const {
- 0:
+const y = const {0:
throw // //# 02: compile-time error
- "y"
-};
+ "y"};
main() {
print(x);
print(y);
const z =
throw // //# 03: compile-time error
- 1 + 1 + 1;
+ 1+1+1;
print(z);
}
« no previous file with comments | « tests/language/compile_time_constant_p_test.dart ('k') | tests/language/conditional_property_assignment_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698