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:
Diffstat (limited to 'src/Common/src/TypeSystem/Common/MethodDesc.cs')
-rw-r--r--src/Common/src/TypeSystem/Common/MethodDesc.cs10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/Common/src/TypeSystem/Common/MethodDesc.cs b/src/Common/src/TypeSystem/Common/MethodDesc.cs
index 7dff64b57..d732de343 100644
--- a/src/Common/src/TypeSystem/Common/MethodDesc.cs
+++ b/src/Common/src/TypeSystem/Common/MethodDesc.cs
@@ -209,7 +209,7 @@ namespace Internal.TypeSystem
/// <summary>
/// Represents the fundamental base type for all methods within the type system.
/// </summary>
- public abstract partial class MethodDesc
+ public abstract partial class MethodDesc : TypeSystemEntity
{
public readonly static MethodDesc[] EmptyMethods = new MethodDesc[0];
@@ -261,14 +261,6 @@ namespace Internal.TypeSystem
}
/// <summary>
- /// Gets the type system context this method belongs to.
- /// </summary>
- public abstract TypeSystemContext Context
- {
- get;
- }
-
- /// <summary>
/// Gets the type that owns this method. This will be a <see cref="DefType"/> or
/// an <see cref="ArrayType"/>.
/// </summary>