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

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
« no previous file with comments | « sdk/lib/_internal/lib/js_mirrors.dart ('k') | tests/lib/lib.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/mirrors/mirrors.dart
diff --git a/sdk/lib/mirrors/mirrors.dart b/sdk/lib/mirrors/mirrors.dart
index 027b197ffd55ad2d897b2d4ad55d7b080d770f1a..d94782ab303e6346e2df816adf0c9b7da46805c6 100644
--- a/sdk/lib/mirrors/mirrors.dart
+++ b/sdk/lib/mirrors/mirrors.dart
@@ -919,6 +919,15 @@ abstract class MethodMirror implements DeclarationMirror {
bool get isAbstract;
/**
+ * Returns true if the reflectee is synthetic, and returns false otherwise.
+ *
+ * A reflectee is synthetic if it is a getter or setter implicitly introduced
+ * for a field or if it is a constructor that was implicitly introduced as a
gbracha 2013/11/26 18:35:14 or Type.
rmacnak 2013/11/26 19:27:07 Done.
+ * default constructor or as part of a mixin application.
+ */
+ 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
« no previous file with comments | « sdk/lib/_internal/lib/js_mirrors.dart ('k') | tests/lib/lib.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698