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

Unified Diff: runtime/lib/mirrors_impl.dart

Issue 128933003: Add ClassMirror.isAbstract to the API and VM implementation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 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 | « runtime/lib/mirrors.cc ('k') | sdk/lib/_internal/lib/js_mirrors.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/mirrors_impl.dart
diff --git a/runtime/lib/mirrors_impl.dart b/runtime/lib/mirrors_impl.dart
index 5f0983adfc63b69decde36b37119b53f9d0e08c3..81bd6bcde4505a2b5e0d0bce6118c596f2f224cd 100644
--- a/runtime/lib/mirrors_impl.dart
+++ b/runtime/lib/mirrors_impl.dart
@@ -437,6 +437,7 @@ class _LocalClassMirror extends _LocalObjectMirror
final Type _reflectedType;
Symbol _simpleName;
DeclarationMirror _owner;
+ final bool isAbstract;
final bool _isGeneric;
final bool _isMixinAlias;
final bool _isGenericDeclaration;
@@ -446,6 +447,7 @@ class _LocalClassMirror extends _LocalObjectMirror
reflectedType,
String simpleName,
this._owner,
+ this.isAbstract,
this._isGeneric,
this._isMixinAlias,
this._isGenericDeclaration)
@@ -804,7 +806,7 @@ class _LocalClassMirror extends _LocalObjectMirror
class _LocalFunctionTypeMirror extends _LocalClassMirror
implements FunctionTypeMirror {
_LocalFunctionTypeMirror(reflectee, reflectedType)
- : super(reflectee, reflectedType, null, null, false, false, false);
+ : super(reflectee, reflectedType, null, null, false, false, false, false);
bool get _isAnonymousMixinApplication => false;
« no previous file with comments | « runtime/lib/mirrors.cc ('k') | sdk/lib/_internal/lib/js_mirrors.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698