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

Unified Diff: tests/language_strong/switch_case_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_strong/switch_bad_case_test.dart ('k') | tests/language_strong/symbol_literal_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_strong/switch_case_test.dart
diff --git a/tests/language_strong/switch_case_test.dart b/tests/language_strong/switch_case_test.dart
index 8d0b80d5ac248ce41642f2a8717936acc4ecfcdc..2ed1df5b28450c1bd6494e846fc9147307ebf281 100644
--- a/tests/language_strong/switch_case_test.dart
+++ b/tests/language_strong/switch_case_test.dart
@@ -14,7 +14,7 @@ class A {
class B implements A {
const B();
- operator ==(o) => true; // /// 00: compile-time error
+ operator ==(o) => true; // //# 00: compile-time error
}
class C implements A {
@@ -30,18 +30,18 @@ class D implements C {
main() {
switch (new B()) {
- case const A.B(): Expect.fail("bad switch"); break; // /// 00: continued
+ case const A.B(): Expect.fail("bad switch"); break; // //# 00: continued
}
switch (new C()) {
case const C(): Expect.fail("bad switch"); break;
case const A.C(): Expect.fail("bad switch"); break;
case const A.C2(): Expect.fail("bad switch"); break;
- case const A(): Expect.fail("bad switch"); break; // /// 01: compile-time error
+ case const A(): Expect.fail("bad switch"); break; // //# 01: compile-time error
}
switch (new A()) {
case const A(): Expect.fail("bad switch"); break;
- case const A.B(): Expect.fail("bad switch"); break; // /// 02: compile-time error
+ case const A.B(): Expect.fail("bad switch"); break; // //# 02: compile-time error
}
}
« no previous file with comments | « tests/language_strong/switch_bad_case_test.dart ('k') | tests/language_strong/symbol_literal_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698