Microsoft.CSharp.RuntimeBinder.Semantics.ExprNamedArgumentSpecification
namespace Microsoft.
CSharp.
RuntimeBinder.
Semantics
{
internal sealed class ExprNamedArgumentSpecification :
Expr
{
public Name Name { get; }
public Expr Value { get; set; }
public ExprNamedArgumentSpecification(
Name name,
Expr value);
}
}