Microsoft.CSharp.RuntimeBinder.Semantics.ExprBoundLambda
namespace Microsoft.CSharp.RuntimeBinder.Semantics
{
internal sealed class ExprBoundLambda : ExprWithType
{
public Expr Expression { get; }
public AggregateType DelegateType { get; }
public Scope ArgumentScope { get; }
public ExprBoundLambda(AggregateType type, Scope argumentScope, Expr expression);
}
}