ExprField
namespace Microsoft.CSharp.RuntimeBinder.Semantics
{
internal sealed class ExprField : ExprWithType, IExprWithObject
{
public Expr OptionalObject { get; set; }
public FieldWithType FieldWithType { get; set; }
public ExprField(CType type)
: base(ExpressionKind.Field, type)
{
}
}
}