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

github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjfrijters <jfrijters>2011-03-13 12:09:43 +0300
committerjfrijters <jfrijters>2011-03-13 12:09:43 +0300
commitbb8ddbfcc0cc8daf7c5f8f5c2de96942847867dc (patch)
tree7247490275b49a3f8d8f02a1953c2c73b1eb50e2 /reflect/Type.cs
parent896b5a4b57bc30d8b5b046bb0d41695ac8cd5eb1 (diff)
Type parameter type names need not assembly qualified if the types live in the current assembly.
Diffstat (limited to 'reflect/Type.cs')
-rw-r--r--reflect/Type.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/reflect/Type.cs b/reflect/Type.cs
index 29880c16..9da1fb7f 100644
--- a/reflect/Type.cs
+++ b/reflect/Type.cs
@@ -1800,7 +1800,7 @@ namespace IKVM.Reflection
return CustomAttributeData.EmptyList;
}
- protected abstract string GetSuffix();
+ internal abstract string GetSuffix();
protected abstract Type Wrap(Type type, Type[] requiredCustomModifiers, Type[] optionalCustomModifiers);
}
@@ -1878,7 +1878,7 @@ namespace IKVM.Reflection
return elementType.GetHashCode() * 5;
}
- protected override string GetSuffix()
+ internal override string GetSuffix()
{
return "[]";
}
@@ -1958,7 +1958,7 @@ namespace IKVM.Reflection
return elementType.GetHashCode() * 9 + rank;
}
- protected override string GetSuffix()
+ internal override string GetSuffix()
{
if (rank == 1)
{
@@ -2120,7 +2120,7 @@ namespace IKVM.Reflection
get { return true; }
}
- protected override string GetSuffix()
+ internal override string GetSuffix()
{
return "&";
}
@@ -2168,7 +2168,7 @@ namespace IKVM.Reflection
get { return true; }
}
- protected override string GetSuffix()
+ internal override string GetSuffix()
{
return "*";
}