15 lines
716 B
C#
15 lines
716 B
C#
using System.Collections.Immutable;
|
|
using Microsoft.CodeAnalysis.CSharp.Symbols;
|
|
|
|
namespace Microsoft.CodeAnalysis.CSharp;
|
|
|
|
internal sealed record MethodArgumentInfo(MethodSymbol Method, ImmutableArray<BoundExpression> Arguments, ImmutableArray<int> ArgsToParamsOpt, BitVector DefaultArguments, bool Expanded)
|
|
{
|
|
public static MethodArgumentInfo CreateParameterlessMethod(MethodSymbol method)
|
|
{
|
|
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
|
|
//IL_0017: Unknown result type (might be due to invalid IL or missing references)
|
|
return new MethodArgumentInfo(method, ImmutableArray<BoundExpression>.Empty, default(ImmutableArray<int>), default(BitVector), Expanded: false);
|
|
}
|
|
}
|