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
path: root/extras
diff options
context:
space:
mode:
authorJeffrey Stedfast <jeff@xamarin.com>2012-04-28 04:17:34 +0400
committerJeffrey Stedfast <jeff@xamarin.com>2012-04-28 04:17:34 +0400
commit8b6890db608a40df98c1f9e02400dd0b9a4456aa (patch)
tree0024305842b20c41e7045f58352ef4ad69777012 /extras
parentc47c74e721dd7fd7f5150e024d6a7c24aa52a2e7 (diff)
[Debugger] Implemented pointer support.
Fixes bug #4697.
Diffstat (limited to 'extras')
-rw-r--r--extras/MonoDevelop.Debugger.Win32/MonoDevelop.Debugger.Win32/CorObjectAdaptor.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/extras/MonoDevelop.Debugger.Win32/MonoDevelop.Debugger.Win32/CorObjectAdaptor.cs b/extras/MonoDevelop.Debugger.Win32/MonoDevelop.Debugger.Win32/CorObjectAdaptor.cs
index 808028c0d7..09bf89efc8 100644
--- a/extras/MonoDevelop.Debugger.Win32/MonoDevelop.Debugger.Win32/CorObjectAdaptor.cs
+++ b/extras/MonoDevelop.Debugger.Win32/MonoDevelop.Debugger.Win32/CorObjectAdaptor.cs
@@ -53,6 +53,12 @@ namespace MonoDevelop.Debugger.Win32
return (v is CorGenericValue) || (v is CorStringValue);
}
+ public override bool IsPointer (EvaluationContext ctx, object val)
+ {
+ // FIXME: implement this correctly.
+ return false;
+ }
+
public override bool IsEnum (EvaluationContext ctx, object val)
{
CorType type = (CorType) GetValueType (ctx, val);