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

Unified Diff: tests/lib_2/mirrors/abstract_class_test.dart

Issue 2997283003: Migrated test lock 217 to Dart 2.0. (Closed)
Patch Set: Addressed comments Created 3 years, 4 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_2/math/rectangle_test.dart ('k') | tests/lib_2/mirrors/abstract_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib_2/mirrors/abstract_class_test.dart
diff --git a/tests/lib_strong/mirrors/abstract_class_test.dart b/tests/lib_2/mirrors/abstract_class_test.dart
similarity index 94%
rename from tests/lib_strong/mirrors/abstract_class_test.dart
rename to tests/lib_2/mirrors/abstract_class_test.dart
index e661d543091529e357b88f49486f8ace93822efb..b7dbaf0ec16d45f9e71975d35e0511337b9b95fc 100644
--- a/tests/lib_strong/mirrors/abstract_class_test.dart
+++ b/tests/lib_2/mirrors/abstract_class_test.dart
@@ -138,7 +138,6 @@ abstract class NamedMA = S with M;
class SubNamedMA extends NamedMA {
mixinFoo() {}
}
-class ConcreteNamedMA = S with M; //# 00: static type warning
abstract class NamedMA2 = S with M2;
@@ -168,10 +167,6 @@ testNamedMixinApplication() {
// Application is concrete.
{
- // Mixin is abstract.
- Expect.isFalse(reflectClass(ConcreteNamedMA).isAbstract); //# 00: ok
- Expect.isFalse(reflectClass(ConcreteNamedMA).superclass.isAbstract); //# 00: ok
-
// Mixin is concrete.
Expect.isFalse(reflectClass(ConcreteNamedMA2).isAbstract);
Expect.isFalse(reflectClass(ConcreteNamedMA2).superclass.isAbstract);
« no previous file with comments | « tests/lib_2/math/rectangle_test.dart ('k') | tests/lib_2/mirrors/abstract_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698