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

Unified Diff: sdk/lib/mirrors/mirrors.dart

Issue 67203002: Implement topLevelMembers, staticMembers, instanceMembers in the VM. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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: sdk/lib/mirrors/mirrors.dart
diff --git a/sdk/lib/mirrors/mirrors.dart b/sdk/lib/mirrors/mirrors.dart
index 6de9a37225c7c373ddda34b5636ad59b691e7daa..1f78b4772a5a0342623d8665c4ddb2161e36cfe8 100644
--- a/sdk/lib/mirrors/mirrors.dart
+++ b/sdk/lib/mirrors/mirrors.dart
@@ -915,6 +915,11 @@ abstract class MethodMirror implements DeclarationMirror {
bool get isAbstract;
/**
+ * Is the reflectee synthetic?
+ */
gbracha 2013/11/14 19:21:21 Returns true if the reflectee is synthetic, and re
rmacnak 2013/11/14 22:19:02 Done.
+ bool get isSynthetic;
+
+ /**
* Is the reflectee a regular function or method?
*
* A function or method is regular if it is not a getter, setter, or

Powered by Google App Engine
This is Rietveld 408576698