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

Unified Diff: reflectable/lib/mirrors.dart

Issue 1181993003: Add support for getters, setters and constructors in declarations of classMirrors. (Closed) Base URL: https://github.com/dart-lang/reflectable.git@master
Patch Set: Reintroduce abstract members in declarations Created 5 years, 6 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 | reflectable/lib/src/encoding_constants.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: reflectable/lib/mirrors.dart
diff --git a/reflectable/lib/mirrors.dart b/reflectable/lib/mirrors.dart
index 1c5866162239532f32a59b005a30e81f629bc2ec..bf4827b56d9fb83a16a41a18361aa767d30019f7 100644
--- a/reflectable/lib/mirrors.dart
+++ b/reflectable/lib/mirrors.dart
@@ -293,6 +293,7 @@ abstract class ClassMirror implements TypeMirror, ObjectMirror {
ClassMirror get superclass;
List<ClassMirror> get superinterfaces;
bool get isAbstract;
+ // The non-abstract members declared in this class.
Map<String, DeclarationMirror> get declarations;
Map<String, MethodMirror> get instanceMembers;
Map<String, MethodMirror> get staticMembers;
« no previous file with comments | « no previous file | reflectable/lib/src/encoding_constants.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698