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

Unified Diff: tests/lib/mirrors/circular_factory_redirection_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/lib/mirrors/abstract_class_test.dart ('k') | tests/lib/mirrors/class_declarations_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/mirrors/circular_factory_redirection_test.dart
diff --git a/tests/lib/mirrors/circular_factory_redirection_test.dart b/tests/lib/mirrors/circular_factory_redirection_test.dart
index b83385450922ead22bca3edadd20382e66f9a3cd..bac6c918283b160a8e08ff1bf31ef2f059ab011e 100644
--- a/tests/lib/mirrors/circular_factory_redirection_test.dart
+++ b/tests/lib/mirrors/circular_factory_redirection_test.dart
@@ -18,14 +18,14 @@ class B implements A {
class C implements B {
const C();
factory C.circular()
- /* /// 01: compile-time error
+ /* //# 01: compile-time error
= C;
- */ = A.circular; /// 01: continued
+ */ = A.circular; //# 01: continued
const factory C.circular2()
- /* /// 02: compile-time error
+ /* //# 02: compile-time error
= C;
- */ = A.circular2; /// 02: continued
+ */ = A.circular2; //# 02: continued
}
main() {
« no previous file with comments | « tests/lib/mirrors/abstract_class_test.dart ('k') | tests/lib/mirrors/class_declarations_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698