Skip to content

Commit 3eb94d1

Browse files
Align reflection name formatting with CoreCLR-JIT (#102756)
There was an observable difference between FormatTypeNameForReflection and FormatTypeName for TypedReference.
1 parent ec5963d commit 3eb94d1

File tree

7 files changed

+7
-36
lines changed

7 files changed

+7
-36
lines changed

src/coreclr/nativeaot/System.Private.CoreLib/src/System/Reflection/Runtime/CustomAttributes/RuntimeCustomAttributeData.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public sealed override string ToString()
6262
ComputeTypedArgumentString(namedArgument.TypedValue, typed));
6363
}
6464

65-
return string.Format("[{0}({1}{2})]", AttributeType.FormatTypeNameForReflection(), ctorArgs, namedArgs);
65+
return string.Format("[{0}({1}{2})]", AttributeType.FormatTypeName(), ctorArgs, namedArgs);
6666
}
6767

6868
protected static ConstructorInfo ResolveAttributeConstructor(

src/coreclr/nativeaot/System.Private.CoreLib/src/System/Reflection/Runtime/EventInfos/RuntimeEventInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public sealed override string ToString()
114114
if (parameters.Length == 0)
115115
throw new InvalidOperationException(); // Legacy: Why is a ToString() intentionally throwing an exception?
116116
RuntimeParameterInfo runtimeParameterInfo = (RuntimeParameterInfo)(parameters[0]);
117-
return runtimeParameterInfo.ParameterType.FormatTypeNameForReflection() + " " + this.Name;
117+
return runtimeParameterInfo.ParameterType.FormatTypeName() + " " + this.Name;
118118
}
119119

120120
protected RuntimeEventInfo WithDebugName()

src/coreclr/nativeaot/System.Private.CoreLib/src/System/Reflection/Runtime/FieldInfos/NativeFormat/NativeFormatRuntimeFieldInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ protected sealed override string MetadataName
8686

8787
public sealed override string ToString()
8888
{
89-
return FieldRuntimeType.ToType().FormatTypeNameForReflection() + " " + this.Name;
89+
return FieldRuntimeType.ToType().FormatTypeName() + " " + this.Name;
9090
}
9191

9292
public sealed override bool HasSameMetadataDefinitionAs(MemberInfo other)

src/coreclr/nativeaot/System.Private.CoreLib/src/System/Reflection/Runtime/MethodInfos/RuntimeMethodHelpers.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ internal static string ComputeParametersString(RuntimeParameterInfo[] parameters
7373
{
7474
if (i != 0)
7575
sb.Append(", ");
76-
string parameterTypeString = parameters[i].ParameterType.FormatTypeNameForReflection();
76+
string parameterTypeString = parameters[i].ParameterType.FormatTypeName();
7777

7878
// Legacy: Why use "ByRef" for by ref parameters? What language is this?
7979
// VB uses "ByRef" but it should precede (not follow) the parameter name.
@@ -94,7 +94,7 @@ internal static string ComputeParametersString(RuntimeParameterInfo[] parameters
9494
internal static string ComputeToString(MethodBase contextMethod, RuntimeTypeInfo[] methodTypeArguments, RuntimeParameterInfo[] parameters, RuntimeParameterInfo returnParameter)
9595
{
9696
StringBuilder sb = new StringBuilder(30);
97-
sb.Append(returnParameter == null ? "Void" : returnParameter.ParameterType.FormatTypeNameForReflection()); // ConstructorInfos allowed to pass in null rather than craft a ReturnParameterInfo that's always of type void.
97+
sb.Append(returnParameter == null ? "Void" : returnParameter.ParameterType.FormatTypeName()); // ConstructorInfos allowed to pass in null rather than craft a ReturnParameterInfo that's always of type void.
9898
sb.Append(' ');
9999
sb.Append(contextMethod.Name);
100100
if (methodTypeArguments.Length != 0)

src/coreclr/nativeaot/System.Private.CoreLib/src/System/Reflection/Runtime/ParameterInfos/RuntimeParameterInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public sealed override int Position
7272

7373
public sealed override string ToString()
7474
{
75-
return this.ParameterType.FormatTypeNameForReflection() + " " + this.Name;
75+
return this.ParameterType.FormatTypeName() + " " + this.Name;
7676
}
7777

7878
private readonly MemberInfo _member;

src/coreclr/nativeaot/System.Private.CoreLib/src/System/Reflection/Runtime/PropertyInfos/RuntimePropertyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ public sealed override string ToString()
214214
{
215215
StringBuilder sb = new StringBuilder(30);
216216

217-
sb.Append(PropertyType.FormatTypeNameForReflection());
217+
sb.Append(PropertyType.FormatTypeName());
218218
sb.Append(' ');
219219
sb.Append(this.Name);
220220
ParameterInfo[] indexParameters = this.GetIndexParameters();

src/coreclr/nativeaot/System.Private.CoreLib/src/System/Type.NativeAot.cs

-29
Original file line numberDiff line numberDiff line change
@@ -56,35 +56,6 @@ private static unsafe RuntimeType GetTypeFromMethodTableSlow(MethodTable* pMT)
5656
}
5757
}
5858

59-
//
60-
// This is a port of the desktop CLR's RuntimeType.FormatTypeName() routine. This routine is used by various Reflection ToString() methods
61-
// to display the name of a type. Do not use for any other purpose as it inherits some pretty quirky desktop behavior.
62-
//
63-
internal string FormatTypeNameForReflection()
64-
{
65-
// Legacy: this doesn't make sense, why use only Name for nested types but otherwise
66-
// ToString() which contains namespace.
67-
Type rootElementType = this;
68-
while (rootElementType.HasElementType)
69-
rootElementType = rootElementType.GetElementType()!;
70-
if (rootElementType.IsNested)
71-
{
72-
return Name!;
73-
}
74-
75-
// Legacy: why removing "System"? Is it just because C# has keywords for these types?
76-
// If so why don't we change it to lower case to match the C# keyword casing?
77-
string typeName = ToString();
78-
if (typeName.StartsWith("System."))
79-
{
80-
if (rootElementType.IsPrimitive || rootElementType == typeof(void))
81-
{
82-
typeName = typeName.Substring("System.".Length);
83-
}
84-
}
85-
return typeName;
86-
}
87-
8859
[Intrinsic]
8960
[RequiresUnreferencedCode("The type might be removed")]
9061
public static Type GetType(string typeName) => GetType(typeName, throwOnError: false, ignoreCase: false);

0 commit comments

Comments
 (0)