Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/core/Mono.Debugging/Mono.Debugging.Evaluation/FilteredMembersSource.cs')
-rw-r--r--main/src/core/Mono.Debugging/Mono.Debugging.Evaluation/FilteredMembersSource.cs26
1 files changed, 0 insertions, 26 deletions
diff --git a/main/src/core/Mono.Debugging/Mono.Debugging.Evaluation/FilteredMembersSource.cs b/main/src/core/Mono.Debugging/Mono.Debugging.Evaluation/FilteredMembersSource.cs
index e604ba888a..225ca14b6b 100644
--- a/main/src/core/Mono.Debugging/Mono.Debugging.Evaluation/FilteredMembersSource.cs
+++ b/main/src/core/Mono.Debugging/Mono.Debugging.Evaluation/FilteredMembersSource.cs
@@ -72,32 +72,6 @@ namespace Mono.Debugging.Evaluation
return val;
}
- public bool HasChildren (ObjectPath path, EvaluationOptions options)
- {
- EvaluationContext cctx = ctx.WithOptions (options);
- TypeDisplayData tdata = null;
- object tdataType = null;
-
- foreach (ValueReference val in cctx.Adapter.GetMembersSorted (cctx, objectSource, type, obj, bindingFlags)) {
- object decType = val.DeclaringType;
- if (decType != null && decType != tdataType) {
- tdataType = decType;
- tdata = cctx.Adapter.GetTypeDisplayData (cctx, decType);
- }
-
- DebuggerBrowsableState state = tdata.GetMemberBrowsableState (val.Name);
- if (state == DebuggerBrowsableState.Never)
- continue;
-
- return true;
- }
-
- if ((bindingFlags & BindingFlags.NonPublic) == 0)
- return true;
-
- return false;
- }
-
public ObjectValue[] GetChildren (ObjectPath path, int index, int count, EvaluationOptions options)
{
EvaluationContext cctx = ctx.WithOptions (options);