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

Unified Diff: tests/language_strong/mixin_illegal_cycles_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
Index: tests/language_strong/mixin_illegal_cycles_test.dart
diff --git a/tests/language_strong/mixin_illegal_cycles_test.dart b/tests/language_strong/mixin_illegal_cycles_test.dart
index 20358bbd1afc83731758869876477ac6440fda1e..084aab2504910927098988cd68e41593465ae4d9 100644
--- a/tests/language_strong/mixin_illegal_cycles_test.dart
+++ b/tests/language_strong/mixin_illegal_cycles_test.dart
@@ -3,37 +3,37 @@
// BSD-style license that can be found in the LICENSE file.
class M { }
-class M0 extends Object with M0 { } // /// 01: compile-time error
-class M1 = Object with M1; // /// 02: compile-time error
+class M0 extends Object with M0 { } // //# 01: compile-time error
+class M1 = Object with M1; // //# 02: compile-time error
-class M2 = Object with M3; // /// 03: compile-time error
-class M3 = Object with M2; // /// 03: continued
+class M2 = Object with M3; // //# 03: compile-time error
+class M3 = Object with M2; // //# 03: continued
-class M4 = Object with M5; // /// 04: compile-time error
-class M5 = Object with M6; // /// 04: continued
-class M6 = Object with M4; // /// 04: continued
+class M4 = Object with M5; // //# 04: compile-time error
+class M5 = Object with M6; // //# 04: continued
+class M6 = Object with M4; // //# 04: continued
-class M7 extends Object with M8 { } // /// 05: compile-time error
-class M8 extends Object with M7 { } // /// 05: continued
+class M7 extends Object with M8 { } // //# 05: compile-time error
+class M8 extends Object with M7 { } // //# 05: continued
-class M9 = Object with M91; // /// 06: compile-time error
-class M91 = Object with M92; // /// 06: continued
-class M92 = Object with M91; // /// 06: continued
+class M9 = Object with M91; // //# 06: compile-time error
+class M91 = Object with M92; // //# 06: continued
+class M92 = Object with M91; // //# 06: continued
main() {
- new M0(); // /// 01: continued
+ new M0(); // //# 01: continued
- new M1(); // /// 02: continued
+ new M1(); // //# 02: continued
- new M2(); // /// 03: continued
- new M3(); // /// 03: continued
+ new M2(); // //# 03: continued
+ new M3(); // //# 03: continued
- new M4(); // /// 04: continued
- new M5(); // /// 04: continued
- new M6(); // /// 04: continued
+ new M4(); // //# 04: continued
+ new M5(); // //# 04: continued
+ new M6(); // //# 04: continued
- new M7(); // /// 05: continued
- new M8(); // /// 05: continued
+ new M7(); // //# 05: continued
+ new M8(); // //# 05: continued
- new M9(); // /// 06: continued
+ new M9(); // //# 06: continued
}
« no previous file with comments | « tests/language_strong/mixin_illegal_constructor_test.dart ('k') | tests/language_strong/mixin_illegal_object_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698