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

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/coreclr/tools/Common/TypeSystem/Canon/InstantiatedMethod.Canon.cs')
-rw-r--r--src/coreclr/tools/Common/TypeSystem/Canon/InstantiatedMethod.Canon.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/coreclr/tools/Common/TypeSystem/Canon/InstantiatedMethod.Canon.cs b/src/coreclr/tools/Common/TypeSystem/Canon/InstantiatedMethod.Canon.cs
index 263615253fa..a5cb3efa1cb 100644
--- a/src/coreclr/tools/Common/TypeSystem/Canon/InstantiatedMethod.Canon.cs
+++ b/src/coreclr/tools/Common/TypeSystem/Canon/InstantiatedMethod.Canon.cs
@@ -6,14 +6,14 @@ using Debug = System.Diagnostics.Debug;
namespace Internal.TypeSystem
{
// Implements generic method canonicalization
- partial class InstantiatedMethod
+ public partial class InstantiatedMethod
{
/// <summary>
/// Stores a cached version of the canonicalized form of this method since
/// calculating it is a recursive operation
/// </summary>
- InstantiatedMethod _specificCanonCache;
- InstantiatedMethod _universalCanonCache;
+ private InstantiatedMethod _specificCanonCache;
+ private InstantiatedMethod _universalCanonCache;
/// <summary>
/// Returns the result of canonicalizing this method over the given kind of Canon
@@ -52,7 +52,7 @@ namespace Internal.TypeSystem
return canonicalMethodResult;
}
- InstantiatedMethod GetCachedCanonValue(CanonicalFormKind kind)
+ private InstantiatedMethod GetCachedCanonValue(CanonicalFormKind kind)
{
switch (kind)
{
@@ -68,7 +68,7 @@ namespace Internal.TypeSystem
}
}
- void SetCachedCanonValue(CanonicalFormKind kind, InstantiatedMethod value)
+ private void SetCachedCanonValue(CanonicalFormKind kind, InstantiatedMethod value)
{
switch (kind)
{