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

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: null source for synthetics, todo on isSynthetic Created 7 years 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 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;

Powered by Google App Engine
This is Rietveld 408576698