mirror of https://github.com/icsharpcode/ILSpy.git
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							108 lines
						
					
					
						
							3.5 KiB
						
					
					
				
			
		
		
	
	
							108 lines
						
					
					
						
							3.5 KiB
						
					
					
				// Copyright (c) 2010-2013 AlphaSierraPapa for the SharpDevelop Team | 
						|
//  | 
						|
// Permission is hereby granted, free of charge, to any person obtaining a copy of this | 
						|
// software and associated documentation files (the "Software"), to deal in the Software | 
						|
// without restriction, including without limitation the rights to use, copy, modify, merge, | 
						|
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons | 
						|
// to whom the Software is furnished to do so, subject to the following conditions: | 
						|
//  | 
						|
// The above copyright notice and this permission notice shall be included in all copies or | 
						|
// substantial portions of the Software. | 
						|
//  | 
						|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, | 
						|
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR | 
						|
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE | 
						|
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR | 
						|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 
						|
// DEALINGS IN THE SOFTWARE. | 
						|
 | 
						|
#nullable enable | 
						|
 | 
						|
using System.Collections.Generic; | 
						|
using System.Runtime.CompilerServices; | 
						|
 | 
						|
namespace ICSharpCode.Decompiler.TypeSystem | 
						|
{ | 
						|
	/// <remarks> | 
						|
	/// Should match order in <see cref="CSharp.Syntax.FieldDirection"/>. | 
						|
	/// </remarks> | 
						|
	public enum ReferenceKind : byte | 
						|
	{ | 
						|
		None, | 
						|
		Out, | 
						|
		Ref, | 
						|
		In | 
						|
	} | 
						|
 | 
						|
	public struct LifetimeAnnotation | 
						|
	{ | 
						|
		public bool RefScoped; | 
						|
		public bool ValueScoped; | 
						|
	} | 
						|
 | 
						|
	public interface IParameter : IVariable | 
						|
	{ | 
						|
		/// <summary> | 
						|
		/// Gets the attributes on this parameter. | 
						|
		/// </summary> | 
						|
		IEnumerable<IAttribute> GetAttributes(); | 
						|
 | 
						|
		/// <summary> | 
						|
		/// Gets the reference kind of this parameter. | 
						|
		/// </summary> | 
						|
		ReferenceKind ReferenceKind { get; } | 
						|
 | 
						|
		/// <summary> | 
						|
		/// C# 11 scoped annotation. | 
						|
		/// </summary> | 
						|
		LifetimeAnnotation Lifetime { get; } | 
						|
 | 
						|
		/// <summary> | 
						|
		/// Gets whether this parameter is a C# 'ref' parameter. | 
						|
		/// </summary> | 
						|
		bool IsRef { get; } | 
						|
 | 
						|
		/// <summary> | 
						|
		/// Gets whether this parameter is a C# 'out' parameter. | 
						|
		/// </summary> | 
						|
		bool IsOut { get; } | 
						|
 | 
						|
		/// <summary> | 
						|
		/// Gets whether this parameter is a C# 'in' parameter. | 
						|
		/// </summary> | 
						|
		bool IsIn { get; } | 
						|
 | 
						|
		/// <summary> | 
						|
		/// Gets whether this parameter is a C# 'params' parameter. | 
						|
		/// </summary> | 
						|
		bool IsParams { get; } | 
						|
 | 
						|
		/// <summary> | 
						|
		/// Gets whether this parameter is optional. | 
						|
		/// The default value is given by the <see cref="IVariable.GetConstantValue"/> function. | 
						|
		/// </summary> | 
						|
		bool IsOptional { get; } | 
						|
 | 
						|
		/// <summary> | 
						|
		/// Gets whether this parameter has a constant value when presented in method signature. | 
						|
		/// </summary> | 
						|
		/// <remarks> | 
						|
		/// This can only be <c>true</c> if the parameter is optional, and it's true for most  | 
						|
		/// optional parameters. However it is possible to compile a parameter without a default value, | 
						|
		/// and some parameters handle their default values in an special way. | 
						|
		///  | 
						|
		/// For example, <see cref="DecimalConstantAttribute"/> does not use normal constants, | 
						|
		/// so when <see cref="DecompilerSettings.DecimalConstants" /> is <c>false</c> | 
						|
		/// we expose <c>DecimalConstantAttribute</c> directly instead of a constant value. | 
						|
		///  | 
						|
		/// On the call sites, though, we can still use the value inferred from the attribute. | 
						|
		/// </remarks> | 
						|
		bool HasConstantValueInSignature { get; } | 
						|
 | 
						|
		/// <summary> | 
						|
		/// Gets the owner of this parameter. | 
						|
		/// May return null; for example when parameters belong to lambdas or anonymous methods. | 
						|
		/// </summary> | 
						|
		IParameterizedMember? Owner { get; } | 
						|
	} | 
						|
}
 | 
						|
 |