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

Unified Diff: reflectable/lib/mirrors.dart

Issue 1182083002: Implement `.instanceMembers`. (Closed) Base URL: https://github.com/dart-lang/reflectable.git@master
Patch Set: Fix return type in test 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') | reflectable/lib/src/mirrors_unimpl.dart » ('J')
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.
eernst 2015/06/18 12:21:12 May need adjustment to match treatment of abstract
sigurdm 2015/06/18 14:22:27 Acknowledged.
Map<String, DeclarationMirror> get declarations;
Map<String, MethodMirror> get instanceMembers;
Map<String, MethodMirror> get staticMembers;
eernst 2015/06/18 12:21:12 In the static case we don't even have the "what to
sigurdm 2015/06/18 14:22:27 Acknowledged.
« no previous file with comments | « no previous file | reflectable/lib/src/encoding_constants.dart » ('j') | reflectable/lib/src/mirrors_unimpl.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698