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

CompilerGeneratedType.Sorting.cs « Compiler « src « ILCompiler.Compiler « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 99457b98f3f7c92f6beee6784a8aaca12a93277d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using System;

using Internal.TypeSystem;

namespace ILCompiler
{
    // Functionality related to determinstic ordering of types and members
    internal sealed partial class CompilerGeneratedType : MetadataType
    {
        protected override int ClassCode => -1036681447;

        protected override int CompareToImpl(TypeDesc other, TypeSystemComparer comparer)
        {
            // Should be a singleton
            throw new NotSupportedException();
        }
    }
}