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:
authorJeffrey Stedfast <jeff@xamarin.com>2013-01-30 02:07:33 +0400
committerJeffrey Stedfast <jeff@xamarin.com>2013-01-30 02:07:33 +0400
commitca6f42be61936455dd24acfb17aac109cd8e997e (patch)
tree8d1e4e7e2576b47f309dd40659cf3b7601de4ffa /main/contrib
parent1e0d4750e52ba5dade8b2972d03ffd7fecb52cf8 (diff)
[Mono.Debugger.Soft] Updated.
Diffstat (limited to 'main/contrib')
-rw-r--r--main/contrib/Mono.Debugger.Soft/Mono.Debugger.Soft/TypeMirror.cs22
-rw-r--r--main/contrib/Mono.Debugger.Soft/mono-git-revision2
2 files changed, 23 insertions, 1 deletions
diff --git a/main/contrib/Mono.Debugger.Soft/Mono.Debugger.Soft/TypeMirror.cs b/main/contrib/Mono.Debugger.Soft/Mono.Debugger.Soft/TypeMirror.cs
index 7df5094781..df1d9050d9 100644
--- a/main/contrib/Mono.Debugger.Soft/Mono.Debugger.Soft/TypeMirror.cs
+++ b/main/contrib/Mono.Debugger.Soft/Mono.Debugger.Soft/TypeMirror.cs
@@ -354,8 +354,26 @@ namespace Mono.Debugger.Soft
switch (Name) {
case "Byte":
return "byte";
+ case "Sbyte":
+ return "sbyte";
+ case "Char":
+ return "char";
+ case "UInt16":
+ return "ushort";
+ case "Int16":
+ return "short";
+ case "UInt32":
+ return "uint";
case "Int32":
return "int";
+ case "UInt64":
+ return "ulong";
+ case "Int64":
+ return "long";
+ case "Single":
+ return "float";
+ case "Double":
+ return "double";
case "Boolean":
return "bool";
default:
@@ -366,6 +384,10 @@ namespace Mono.Debugger.Soft
if (Namespace == "System") {
string s = Name;
switch (s) {
+ case "Decimal":
+ return "decimal";
+ case "Object":
+ return "object";
case "String":
return "string";
default:
diff --git a/main/contrib/Mono.Debugger.Soft/mono-git-revision b/main/contrib/Mono.Debugger.Soft/mono-git-revision
index f3e14c1d11..7450a5832d 100644
--- a/main/contrib/Mono.Debugger.Soft/mono-git-revision
+++ b/main/contrib/Mono.Debugger.Soft/mono-git-revision
@@ -1 +1 @@
-a66283406995672834ac3fd3658fe96ddd16d065
+6e3e95a49f36df254d5eafe6f7e5737a261c0731