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

Unified Diff: tests/language/black_listed_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/bit_operations_test.dart ('k') | tests/language/bool_condition_check_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/black_listed_test.dart
diff --git a/tests/language/black_listed_test.dart b/tests/language/black_listed_test.dart
index 9eed1292220aba84d1adcd69adfa97a96311ee31..43e355465928846f94c5aca7c5bace6b93580fec 100644
--- a/tests/language/black_listed_test.dart
+++ b/tests/language/black_listed_test.dart
@@ -7,74 +7,74 @@
// implemented or extended.
// bool.
-class MyBool implements bool {} // /// 01: compile-time error
-abstract class MyBoolInterface implements bool default F { // /// 02: compile-time error
- MyBoolInterface(); // /// 02: continued
-} // /// 02: continued
+class MyBool implements bool {} // //# 01: compile-time error
+abstract class MyBoolInterface implements bool default F { // //# 02: compile-time error
+ MyBoolInterface(); // //# 02: continued
+} // //# 02: continued
// num.
-class MyNum implements num {} // /// 03: compile-time error
-abstract class MyNumInterface implements num default F { // /// 04: compile-time error
- MyNumInterface(); // /// 04: continued
-} // /// 04: continued
+class MyNum implements num {} // //# 03: compile-time error
+abstract class MyNumInterface implements num default F { // //# 04: compile-time error
+ MyNumInterface(); // //# 04: continued
+} // //# 04: continued
// int.
-class MyInt implements int {} // /// 05: compile-time error
-abstract class MyIntInterface implements int default F { // /// 06: compile-time error
- MyIntInterface(); // /// 06: continued
-} // /// 06: continued
+class MyInt implements int {} // //# 05: compile-time error
+abstract class MyIntInterface implements int default F { // //# 06: compile-time error
+ MyIntInterface(); // //# 06: continued
+} // //# 06: continued
// double.
-class MyDouble implements double {} // /// 07: compile-time error
-abstract class MyDoubleInterface implements double default F { // /// 08: compile-time error
- MyDoubleInterface(); // /// 08: continued
-} // /// 08: continued
+class MyDouble implements double {} // //# 07: compile-time error
+abstract class MyDoubleInterface implements double default F { // //# 08: compile-time error
+ MyDoubleInterface(); // //# 08: continued
+} // //# 08: continued
// String.
-class MyString implements String {} // /// 09: compile-time error
-abstract class MyStringInterface implements String default F { // /// 10: compile-time error
- MyStringInterface(); // /// 10: continued
-} // /// 10: continued
+class MyString implements String {} // //# 09: compile-time error
+abstract class MyStringInterface implements String default F { // //# 10: compile-time error
+ MyStringInterface(); // //# 10: continued
+} // //# 10: continued
// Function.
class MyFunction implements Function {}
class MyOtherFunction extends Function {}
-abstract class MyFunctionInterface implements Function default F { // /// 12: compile-time error
- MyFunctionInterface(); // /// 12: continued
-} // /// 12: continued
+abstract class MyFunctionInterface implements Function default F { // //# 12: compile-time error
+ MyFunctionInterface(); // //# 12: continued
+} // //# 12: continued
// dynamic.
-class MyDynamic implements dynamic {} // /// 13: compile-time error
-abstract class MyDynamicInterface implements dynamic default F { // /// 14: compile-time error
- MyDynamicInterface(); // /// 14: continued
-} // /// 14: continued
+class MyDynamic implements dynamic {} // //# 13: compile-time error
+abstract class MyDynamicInterface implements dynamic default F { // //# 14: compile-time error
+ MyDynamicInterface(); // //# 14: continued
+} // //# 14: continued
class F {
- factory MyBoolInterface() { return null; } // /// 02: continued
- factory MyNumInterface() { return null; } // /// 04: continued
- factory MyIntInterface() { return null; } // /// 06: continued
- factory MyDoubleInterface() { return null; } // /// 08: continued
- factory MyStringInterface() { return null; } // /// 10: continued
- factory MyFunctionInterface() { return null; } // /// 12: continued
- factory MyDynamicInterface() { return null; } // /// 14: continued
+ factory MyBoolInterface() { return null; } // //# 02: continued
+ factory MyNumInterface() { return null; } // //# 04: continued
+ factory MyIntInterface() { return null; } // //# 06: continued
+ factory MyDoubleInterface() { return null; } // //# 08: continued
+ factory MyStringInterface() { return null; } // //# 10: continued
+ factory MyFunctionInterface() { return null; } // //# 12: continued
+ factory MyDynamicInterface() { return null; } // //# 14: continued
}
main() {
- new MyBool(); // /// 01: continued
- new MyBoolInterface(); // /// 02: continued
- new MyNum(); // /// 03: continued
- new MyNumInterface(); // /// 04: continued
- new MyInt(); // /// 05: continued
- new MyIntInterface(); // /// 06: continued
- new MyDouble(); // /// 07: continued
- new MyDoubleInterface(); // /// 08: continued
- new MyString(); // /// 09: continued
- new MyStringInterface(); // /// 10: continued
+ new MyBool(); // //# 01: continued
+ new MyBoolInterface(); // //# 02: continued
+ new MyNum(); // //# 03: continued
+ new MyNumInterface(); // //# 04: continued
+ new MyInt(); // //# 05: continued
+ new MyIntInterface(); // //# 06: continued
+ new MyDouble(); // //# 07: continued
+ new MyDoubleInterface(); // //# 08: continued
+ new MyString(); // //# 09: continued
+ new MyStringInterface(); // //# 10: continued
new MyFunction();
new MyOtherFunction();
- new MyFunctionInterface(); /// 12: continued
- new MyDynamic(); // /// 13: continued
- new MyDynamicInterface(); // /// 14: continued
+ new MyFunctionInterface(); //# 12: continued
+ new MyDynamic(); // //# 13: continued
+ new MyDynamicInterface(); // //# 14: continued
}
« no previous file with comments | « tests/language/bit_operations_test.dart ('k') | tests/language/bool_condition_check_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698