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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Strehovský <michals@microsoft.com>2015-12-15 04:45:22 +0300
committerMichal Strehovský <michals@microsoft.com>2015-12-15 05:56:59 +0300
commit40a39c672a29555918d153313ae1332e1333c94e (patch)
tree064a121c32725e8ad298c90bccaa9fec224f5d13 /src/JitInterface
parent964952dfbda231ab28e582ce4638488729e94e57 (diff)
Type system metadata tweaks
- Move name to MetadataType and separate Namespace from Name. Name can be a MetadataString once we have it. - Introduce GenerericParameterDesc in the type hierarchy. For now it doesn't have anything. - Move ContainingType to MetadataType - Expose literal fields.
Diffstat (limited to 'src/JitInterface')
-rw-r--r--src/JitInterface/src/CorInfoImpl.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/JitInterface/src/CorInfoImpl.cs b/src/JitInterface/src/CorInfoImpl.cs
index 1580cbd7c..a48fb3679 100644
--- a/src/JitInterface/src/CorInfoImpl.cs
+++ b/src/JitInterface/src/CorInfoImpl.cs
@@ -1436,7 +1436,7 @@ namespace Internal.JitInterface
{
EcmaType ecmaType = method.OwningType.GetTypeDefinition() as EcmaType;
if (ecmaType != null)
- *moduleName = (byte*)GetPin(StringToUTF8(ecmaType.Name));
+ *moduleName = (byte*)GetPin(StringToUTF8(ecmaType.GetFullName()));
else
*moduleName = (byte*)GetPin(StringToUTF8("unknown"));
}