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

IEcmaModule.cs « Ecma « TypeSystem « Common « tools « coreclr « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 816906f7cb9add7f108b5f390f24d6565c6f0ad9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System;
using System.Collections.Generic;
using System.Reflection;
using System.Reflection.Metadata;
using System.Reflection.Metadata.Ecma335;
using System.Reflection.PortableExecutable;

using Internal.TypeSystem.Ecma;

namespace Internal.IL
{
    // Marker interface implemented by EcmaMethodIL and EcmaMethodILScope
    // and other providers of IL that comes ultimately from Ecma IL.
    public interface IEcmaMethodIL
    {
        public IEcmaModule Module { get; }
    }

    public sealed partial class EcmaMethodIL : IEcmaMethodIL
    {
        IEcmaModule IEcmaMethodIL.Module
        {
            get
            {
                return _module;
            }
        }
    }

    public sealed partial class EcmaMethodILScope : IEcmaMethodIL
    {
        IEcmaModule IEcmaMethodIL.Module
        {
            get
            {
                return _module;
            }
        }
    }
}

namespace Internal.TypeSystem.Ecma
{
    public interface IEcmaModule
    {
        MetadataReader MetadataReader { get; }
        TypeDesc GetType(EntityHandle handle);
        Object GetObject(EntityHandle handle, NotFoundBehavior notFoundBehavior = NotFoundBehavior.Throw);
        int CompareTo(IEcmaModule other);
        int ModuleTypeSort { get; }

        IAssemblyDesc Assembly { get; }
    }

    public partial class EcmaModule : IEcmaModule
    {
        public int CompareTo(IEcmaModule other)
        {
            if (this == other)
                return 0;

            if (other is EcmaModule emoduleOther)
            {
                return CompareTo(emoduleOther);
            }

            return ModuleTypeSort.CompareTo(other.ModuleTypeSort);
        }

        public int ModuleTypeSort => 0;
    }
}