// 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; using System.Collections.Generic; using System.Runtime.CompilerServices; namespace ICSharpCode.Decompiler.TypeSystem { /// /// Should match order in . /// public enum ReferenceKind : byte { None, Out, Ref, In, RefReadOnly, } public struct LifetimeAnnotation { /// /// C# 11 scoped annotation: "scoped ref" (ScopedRefAttribute) /// public bool ScopedRef { #pragma warning disable 618 get { return RefScoped; } set { RefScoped = value; } #pragma warning restore 618 } [Obsolete("Use ScopedRef property instead of directly accessing this field")] public bool RefScoped; [Obsolete("C# 11 preview: \"ref scoped\" no longer supported")] 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# '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; } } }