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

Unified Diff: tests/language/variable_declaration_metadata_test.dart

Issue 2765893003: Fix warnings_checker.dart handling of 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
« no previous file with comments | « tests/language/unsupported_operators_test.dart ('k') | tests/language/vm/debug_break_enabled_vm_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 7e0a6bd6b1a0e9edfd9bab0ed1d6fb144eda0fda..bf60099ba001e5ff5bbb8bb210fabcf0f3bd286f 100644
--- a/tests/language/variable_declaration_metadata_test.dart
+++ b/tests/language/variable_declaration_metadata_test.dart
@@ -8,28 +8,28 @@
const annotation = null;
var
- @annotation /// 01: compile-time error
+ @annotation //# 01: compile-time error
v1,
- @annotation /// 02: compile-time error
+ @annotation //# 02: compile-time error
v2;
int
- @annotation /// 03: compile-time error
+ @annotation //# 03: compile-time error
v3,
- @annotation /// 04: compile-time error
+ @annotation //# 04: compile-time error
v4;
class C {
var
- @annotation /// 05: compile-time error
+ @annotation //# 05: compile-time error
f1,
- @annotation /// 06: compile-time error
+ @annotation //# 06: compile-time error
f2;
int
- @annotation /// 07: compile-time error
+ @annotation //# 07: compile-time error
f3,
- @annotation /// 08: compile-time error
+ @annotation //# 08: compile-time error
f4;
}
@@ -48,15 +48,15 @@ main() {
use(c.f4);
var
- @annotation /// 09: compile-time error
+ @annotation //# 09: compile-time error
l1,
- @annotation /// 10: compile-time error
+ @annotation //# 10: compile-time error
l2;
int
- @annotation /// 11: compile-time error
+ @annotation //# 11: compile-time error
l3,
- @annotation /// 12: compile-time error
+ @annotation //# 12: compile-time error
l4;
use(l1);
@@ -65,9 +65,9 @@ main() {
use(l4);
for (var
- @annotation /// 13: compile-time error
+ @annotation //# 13: compile-time error
i1 = 0,
- @annotation /// 14: compile-time error
+ @annotation //# 14: compile-time error
i2 = 0; ; ) {
use(i1);
use(i2);
@@ -75,9 +75,9 @@ main() {
}
for (int
- @annotation /// 15: compile-time error
+ @annotation //# 15: compile-time error
i3 = 0,
- @annotation /// 16: compile-time error
+ @annotation //# 16: compile-time error
i4 = 0; ; ) {
use(i3);
use(i4);
« no previous file with comments | « tests/language/unsupported_operators_test.dart ('k') | tests/language/vm/debug_break_enabled_vm_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698