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

Unified Diff: tests/language/variable_declaration_metadata_test.dart

Issue 2774783002: Re-land "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/variable_declaration_metadata_test.dart
diff --git a/tests/language/variable_declaration_metadata_test.dart b/tests/language/variable_declaration_metadata_test.dart
index bf60099ba001e5ff5bbb8bb210fabcf0f3bd286f..68a7ed514636b4e1cb9d260af1bc82743b4fac6b 100644
--- a/tests/language/variable_declaration_metadata_test.dart
+++ b/tests/language/variable_declaration_metadata_test.dart
@@ -9,28 +9,28 @@ const annotation = null;
var
@annotation //# 01: compile-time error
- v1,
+ v1,
@annotation //# 02: compile-time error
- v2;
+ v2;
int
@annotation //# 03: compile-time error
- v3,
+ v3,
@annotation //# 04: compile-time error
- v4;
+ v4;
class C {
var
@annotation //# 05: compile-time error
- f1,
+ f1,
@annotation //# 06: compile-time error
- f2;
+ f2;
int
@annotation //# 07: compile-time error
- f3,
+ f3,
@annotation //# 08: compile-time error
- f4;
+ f4;
}
use(x) => x;
@@ -49,15 +49,15 @@ main() {
var
@annotation //# 09: compile-time error
- l1,
+ l1,
@annotation //# 10: compile-time error
- l2;
+ l2;
int
@annotation //# 11: compile-time error
- l3,
+ l3,
@annotation //# 12: compile-time error
- l4;
+ l4;
use(l1);
use(l2);
@@ -66,9 +66,9 @@ main() {
for (var
@annotation //# 13: compile-time error
- i1 = 0,
+ i1 = 0,
@annotation //# 14: compile-time error
- i2 = 0; ; ) {
+ i2 = 0;;) {
use(i1);
use(i2);
break;
@@ -76,9 +76,9 @@ main() {
for (int
@annotation //# 15: compile-time error
- i3 = 0,
+ i3 = 0,
@annotation //# 16: compile-time error
- i4 = 0; ; ) {
+ i4 = 0;;) {
use(i3);
use(i4);
break;
« no previous file with comments | « tests/language/unsupported_operators_test.dart ('k') | tests/language/wrong_number_type_arguments_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698