// 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
{
///
/// Should match order in .
///
public enum ReferenceKind : byte
{
None,
Out,
Ref,
In
}
public struct LifetimeAnnotation
{
public bool RefScoped;
public bool ValueScoped;
}
public interface IParameter : IVariable
{
///
/// Gets the attributes on this parameter.
///
IEnumerable GetAttributes();
///
/// Gets the reference kind of this parameter.
///
ReferenceKind ReferenceKind { get; }
///
/// C# 11 scoped annotation.
///
LifetimeAnnotation Lifetime { get; }
///
/// Gets whether this parameter is a C# 'ref' parameter.
///
bool IsRef { get; }
///
/// Gets whether this parameter is a C# 'out' parameter.
///
bool IsOut { get; }
///
/// Gets whether this parameter is a C# 'in' parameter.
///
bool IsIn { get; }
///
/// Gets whether this parameter is a C# 'params' parameter.
///
bool IsParams { get; }
///
/// Gets whether this parameter is optional.
/// The default value is given by the function.
///
bool IsOptional { get; }
///
/// Gets whether this parameter has a constant value when presented in method signature.
///
///
/// This can only be true 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, does not use normal constants,
/// so when is false
/// we expose DecimalConstantAttribute directly instead of a constant value.
///
/// On the call sites, though, we can still use the value inferred from the attribute.
///
bool HasConstantValueInSignature { get; }
///
/// Gets the owner of this parameter.
/// May return null; for example when parameters belong to lambdas or anonymous methods.
///
IParameterizedMember? Owner { get; }
}
}