EXPRBOUNDLAMBDA
namespace Microsoft.CSharp.RuntimeBinder.Semantics
{
internal class EXPRBOUNDLAMBDA : EXPR
{
public EXPRBLOCK OptionalBody;
private Scope _argumentScope;
public void Initialize(Scope argScope)
{
_argumentScope = argScope;
}
public AggregateType DelegateType()
{
return type.AsAggregateType();
}
public Scope ArgumentScope()
{
return _argumentScope;
}
}
}