Chromium Code Reviews| 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 |