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

Unified Diff: runtime/lib/mirrors_impl.dart

Issue 26293005: Modifications to TypeVariableMirror implementation to accommodate expected hoisting of methods from… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/mirrors_impl.dart
===================================================================
--- runtime/lib/mirrors_impl.dart (revision 28477)
+++ runtime/lib/mirrors_impl.dart (working copy)
@@ -843,8 +843,14 @@
return _upperBound;
}
+ bool get hasReflectedType => false;
+ Type get reflectedType => throw new UnsupportedError() ;
+
+ List<TypeVariableMirror> get typeVariables => new UnmodifiableListView<TypeVariableMirror>();
+ List<TypeMirror> get typeArguments => new UnmodifiableListView<TypeMirror>();
+
bool get isOriginalDeclaration => true;
- ClassMirror get originalDeclaration => this;
+ TypeMirror get originalDeclaration => this;
String toString() => "TypeVariableMirror on '${_n(simpleName)}'";
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698