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

Unified Diff: tests/lib/mirrors/generic_bounded_test.dart

Issue 47743011: Substitute types in generic superclasses and interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebased. Created 7 years, 2 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/lib/mirrors/generic_bounded_test.dart
diff --git a/tests/lib/mirrors/generic_bounded_test.dart b/tests/lib/mirrors/generic_bounded_test.dart
index dec144aebd5989affc77f45d5ab714c8ce6ef15d..7b0e4f06df10c46242268b4f89209922794fcb32 100644
--- a/tests/lib/mirrors/generic_bounded_test.dart
+++ b/tests/lib/mirrors/generic_bounded_test.dart
@@ -16,6 +16,15 @@ class Fixed extends Super<int> {}
class Generic<R> extends Super<R> {} /// 02: static type warning
class Malbounded extends Super<String> {} /// 01: static type warning
+bool inCheckedMode() {
+ try {
+ int i = 'string';
+ } catch(e) {
+ return true;
+ }
+ return false;
+}
+
main() {
ClassMirror superDecl = reflectClass(Super);
ClassMirror superOfInt = reflectClass(Fixed).superclass;
@@ -23,8 +32,21 @@ main() {
ClassMirror superOfR = genericDecl.superclass; /// 02: continued
ClassMirror genericOfDouble = reflect(new Generic<double>()).type; /// 02: continued
ClassMirror superOfDouble = genericOfDouble.superclass; /// 02: continued
- ClassMirror genericOfBool = reflect(new Generic<bool>()).type; /// 02: static type warning, dynamic type error
- ClassMirror superOfBool = genericOfBool.superclass; /// 02: continued
+
+ try {
+ ClassMirror genericOfBool = reflect(new Generic<bool>()).type; /// 02: static type warning
+ ClassMirror superOfBool = genericOfBool.superclass; /// 02: continued
+ Expect.isFalse(genericOfBool.isOriginalDeclaration); /// 02: continued
+ Expect.isFalse(superOfBool.isOriginalDeclaration); /// 02: continued
+ typeParameters(genericOfBool, [#R]); /// 02: continued
+ typeParameters(superOfBool, [#T]); /// 02: continued
+ typeArguments(genericOfBool, [reflectClass(bool)]); /// 02: continued
+ typeArguments(superOfBool, [reflectClass(bool)]); /// 02: continued
+ Expect.isFalse(inCheckedMode()); /// 02: continued
+ } on TypeError catch(e) {
+ Expect.isTrue(inCheckedMode);
+ }
+
ClassMirror superOfString = reflectClass(Malbounded).superclass; /// 01: continued
Expect.isTrue(superDecl.isOriginalDeclaration);
@@ -33,8 +55,7 @@ main() {
Expect.isFalse(superOfR.isOriginalDeclaration); /// 02: continued
Expect.isFalse(genericOfDouble.isOriginalDeclaration); /// 02: continued
Expect.isFalse(superOfDouble.isOriginalDeclaration); /// 02: continued
- Expect.isFalse(genericOfBool.isOriginalDeclaration); /// 02: continued
- Expect.isFalse(superOfBool.isOriginalDeclaration); /// 02: continued
+
Expect.isFalse(superOfString.isOriginalDeclaration); /// 01: continued
TypeVariableMirror tFromSuper = superDecl.typeVariables.single;
@@ -49,8 +70,6 @@ main() {
typeParameters(superOfR, [#T]); /// 02: continued
typeParameters(genericOfDouble, [#R]); /// 02: continued
typeParameters(superOfDouble, [#T]); /// 02: continued
- typeParameters(genericOfBool, [#R]); /// 02: continued
- typeParameters(superOfBool, [#T]); /// 02: continued
typeParameters(superOfString, [#T]); /// 01: continued
typeArguments(superDecl, []);
@@ -59,7 +78,5 @@ main() {
typeArguments(superOfR, [rFromGeneric]); /// 02: continued
typeArguments(genericOfDouble, [reflectClass(double)]); /// 02: continued
typeArguments(superOfDouble, [reflectClass(double)]); /// 02: continued
- typeArguments(genericOfBool, [reflectClass(bool)]); /// 02: continued
- typeArguments(superOfBool, [reflectClass(bool)]); /// 02: continued
typeArguments(superOfString, [reflectClass(String)]); /// 01: continued
}

Powered by Google App Engine
This is Rietveld 408576698