提交 543e66e0 编写于 作者: G Gen Lu

More CSharp tests for IArgument

上级 984372db
......@@ -11,10 +11,14 @@ namespace Microsoft.CodeAnalysis.Semantics
public interface IHasArgumentsExpression : IOperation
{
/// <summary>
/// Arguments of the invocation, excluding the instance argument. Arguments are in evaluation order,
/// and params/ParamArray arguments have been collected into arrays. Default values are supplied for
/// optional arguments missing in source.
/// Arguments of the invocation, excluding the instance argument. Arguments are in evaluation order.
/// </summary>
/// <remarks>
/// If the invocation is in its expanded form, then params/ParamArray arguments would be collected into arrays.
/// Default values are supplied for optional arguments missing in source. Because they are always constant, their
/// evaluation will not impact the evaluation order of the remaining arguments, therefore are appended at the end
/// of the returned argument list.
/// </remarks>
ImmutableArray<IArgument> ArgumentsInEvaluationOrder { get; }
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册