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

Unified Diff: sdk/lib/_internal/lib/js_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: doc tweak 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/_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;

Powered by Google App Engine
This is Rietveld 408576698