Chromium Code Reviews| Index: sdk/lib/_internal/lib/js_mirrors.dart |
| diff --git a/sdk/lib/_internal/lib/js_mirrors.dart b/sdk/lib/_internal/lib/js_mirrors.dart |
| index 002865d56e9cbba0c43b4502b35e0f461118022f..aaf39f4b5c6f9ca430cdfb7f92c6832d65157070 100644 |
| --- a/sdk/lib/_internal/lib/js_mirrors.dart |
| +++ b/sdk/lib/_internal/lib/js_mirrors.dart |
| @@ -1743,6 +1743,8 @@ class JsMethodMirror extends JsDeclarationMirror implements MethodMirror { |
| // Abstract methods are tree-shaken away. |
| bool get isAbstract => false; |
| + bool get isSynthetic => false; |
|
ahe
2013/12/06 12:20:40
Could you add a TODO here? I don't think this corr
rmacnak
2013/12/07 02:09:06
Done.
|
| + |
| // TODO(ahe): Test this. |
| bool get isRegularMethod => !isGetter && !isSetter && !isConstructor; |