1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 using Internal.TypeSystem;
6 
7 namespace ILCompiler.DependencyAnalysis
8 {
9     /// <summary>
10     /// A dependency analysis node that represents a method.
11     /// </summary>
12     public interface IMethodNode : ISortableSymbolNode
13     {
14         MethodDesc Method { get; }
15     }
16 }
17