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 b1fb4c4f94ae2a48e2be001865a4e0549a96756d..550db83e911cc45873088004c46fb2d3ef12a932 100644 |
--- a/sdk/lib/_internal/lib/js_mirrors.dart |
+++ b/sdk/lib/_internal/lib/js_mirrors.dart |
@@ -1819,6 +1819,9 @@ class JsMethodMirror extends JsDeclarationMirror implements MethodMirror { |
// Abstract methods are tree-shaken away. |
bool get isAbstract => false; |
+ // TODO(ahe): This might not be true for all cases. |
siva
2013/12/11 00:54:43
Usually it is preferable to have an issue number i
rmacnak
2013/12/11 01:17:10
Added issue number from the failing tests.
|
+ bool get isSynthetic => false; |
+ |
// TODO(ahe): Test this. |
bool get isRegularMethod => !isGetter && !isSetter && !isConstructor; |