Index: runtime/lib/mirrors.cc |
diff --git a/runtime/lib/mirrors.cc b/runtime/lib/mirrors.cc |
index b928d844a1df039ea75946a96d0fc312388dfe02..ad999b5659836aac79a67e9102eba9145cf5febd 100644 |
--- a/runtime/lib/mirrors.cc |
+++ b/runtime/lib/mirrors.cc |
@@ -2,8 +2,6 @@ |
// for details. All rights reserved. Use of this source code is governed by a |
// BSD-style license that can be found in the LICENSE file. |
-#include "lib/mirrors.h" |
- |
#include "lib/invocation_mirror.h" |
#include "vm/bootstrap_natives.h" |
#include "vm/class_finalizer.h" |
@@ -1129,10 +1127,9 @@ DEFINE_NATIVE_ENTRY(LibraryMirror_members, 2) { |
} |
} else if (entry.IsFunction()) { |
const Function& func = Function::Cast(entry); |
- if (func.is_visible() && |
- (func.kind() == RawFunction::kRegularFunction || |
+ if (func.kind() == RawFunction::kRegularFunction || |
func.kind() == RawFunction::kGetterFunction || |
- func.kind() == RawFunction::kSetterFunction)) { |
+ func.kind() == RawFunction::kSetterFunction) { |
member_mirror = CreateMethodMirror(func, owner_mirror); |
member_mirrors.Add(member_mirror); |
} |