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

Unified Diff: tests/language/method_override2_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/metadata_scope2_test.dart ('k') | tests/language/method_override3_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/method_override2_test.dart
diff --git a/tests/language/method_override2_test.dart b/tests/language/method_override2_test.dart
index 63eb4310dd8e5fbbb7b677e3f4a9ad32057fb81b..f697efe7b8c99126a3a3b91b05f86a8c43fa2437 100644
--- a/tests/language/method_override2_test.dart
+++ b/tests/language/method_override2_test.dart
@@ -11,7 +11,7 @@ abstract class I {
abstract class J extends I { }
abstract class K extends J {
- m({c, d}); // /// 00: static type warning
+ m({c, d}); // //# 00: static type warning
}
class C implements I {
@@ -21,9 +21,9 @@ class C implements I {
}
class D
- extends C // /// 01: static type warning
- implements I // /// 02: static type warning
- implements J // /// 03: static type warning
+ extends C // //# 01: static type warning
+ implements I // //# 02: static type warning
+ implements J // //# 03: static type warning
{
m({c, d}) {
print("$c $d");
« no previous file with comments | « tests/language/metadata_scope2_test.dart ('k') | tests/language/method_override3_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698