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

Unified Diff: tests/language/override_inheritance_no_such_method_test.dart

Issue 2765693002: Update all tests (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/override_inheritance_no_such_method_test.dart
diff --git a/tests/language/override_inheritance_no_such_method_test.dart b/tests/language/override_inheritance_no_such_method_test.dart
index 80409e0f9b0698da0bb4270550bce4467fff54c0..7b262bbf36990d875071f25225e71150bba4a426 100644
--- a/tests/language/override_inheritance_no_such_method_test.dart
+++ b/tests/language/override_inheritance_no_such_method_test.dart
@@ -6,45 +6,45 @@
// concrete classes.
abstract class A {
- method6(); /// 06: static type warning
- method7(); /// 07: static type warning
- method8(); /// 08: ok
+ method6(); //# 06: static type warning
+ method7(); //# 07: static type warning
+ method8(); //# 08: ok
}
abstract class I {
- method9(); /// 09: static type warning
- method10(); /// 10: static type warning
- method11(); /// 11: ok
+ method9(); //# 09: static type warning
+ method10(); //# 10: static type warning
+ method11(); //# 11: ok
}
-@proxy /// 02: static type warning
-@proxy /// 07: continued
-@proxy /// 10: continued
+@proxy //# 02: static type warning
+@proxy //# 07: continued
+@proxy //# 10: continued
class Class1 extends A implements I {
- method1(); /// 01: static type warning
+ method1(); //# 01: static type warning
- method2(); /// 02: continued
+ method2(); //# 02: continued
- noSuchMethod(_) => null; /// 03: ok
- method3(); /// 03: continued
+ noSuchMethod(_) => null; //# 03: ok
+ method3(); //# 03: continued
- noSuchMethod(_, [__]) => null; /// 04: ok
- method4(); /// 04: continued
+ noSuchMethod(_, [__]) => null; //# 04: ok
+ method4(); //# 04: continued
- noSuchMethod(_); /// 05: ok
- method5(); /// 05: continued
+ noSuchMethod(_); //# 05: ok
+ method5(); //# 05: continued
- noSuchMethod(_) => null; /// 08: continued
+ noSuchMethod(_) => null; //# 08: continued
- noSuchMethod(_) => null; /// 11: continued
+ noSuchMethod(_) => null; //# 11: continued
}
-@proxy /// 12: static type warning
+@proxy //# 12: static type warning
class B {
- method12(); /// 12: continued
+ method12(); //# 12: continued
- noSuchMethod(_) => null; /// 13: ok
- method13(); /// 13: continued
+ noSuchMethod(_) => null; //# 13: ok
+ method13(); //# 13: continued
}
class Class2 extends B {

Powered by Google App Engine
This is Rietveld 408576698