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:
authorArtem Bukhonov <artem.bukhonov@jetbrains.com>2017-02-15 22:15:15 +0300
committerArtem Bukhonov <Artem.Bukhonov@jetbrains.com>2017-03-11 21:31:11 +0300
commit2fe77f82dddff9230678914053e1f76448a4a038 (patch)
treec4d3941cf8a90a08a54714d778c3c328b0a442d7 /main/src/addins/MonoDevelop.Debugger.Win32
parentb81369d2b122bc3c03f81f1b26e168f5edbbccd6 (diff)
CorDebug: Do not hide members marked with CompilerGeneratedAttribute
(cherry picked from commit 47cbbf4)
Diffstat (limited to 'main/src/addins/MonoDevelop.Debugger.Win32')
-rw-r--r--main/src/addins/MonoDevelop.Debugger.Win32/Mono.Debugging.Win32/CorObjectAdaptor.cs5
1 files changed, 0 insertions, 5 deletions
diff --git a/main/src/addins/MonoDevelop.Debugger.Win32/Mono.Debugging.Win32/CorObjectAdaptor.cs b/main/src/addins/MonoDevelop.Debugger.Win32/Mono.Debugging.Win32/CorObjectAdaptor.cs
index e13e1d9402..dec4cb187e 100644
--- a/main/src/addins/MonoDevelop.Debugger.Win32/Mono.Debugging.Win32/CorObjectAdaptor.cs
+++ b/main/src/addins/MonoDevelop.Debugger.Win32/Mono.Debugging.Win32/CorObjectAdaptor.cs
@@ -1699,11 +1699,6 @@ namespace Mono.Debugging.Win32
foreach (MemberInfo m in mems) {
object[] atts = m.GetCustomAttributes (typeof (DebuggerBrowsableAttribute), false);
- if (atts.Length == 0) {
- atts = m.GetCustomAttributes (typeof (CompilerGeneratedAttribute), false);
- if (atts.Length > 0)
- atts[0] = new DebuggerBrowsableAttribute (DebuggerBrowsableState.Never);
- }
if (atts.Length > 0) {
hasTypeData = true;
if (memberData == null)