ExprBinOp
using System.Runtime.CompilerServices;
namespace Microsoft.CSharp.RuntimeBinder.Semantics
{
internal sealed class ExprBinOp : ExprOperator
{
public Expr OptionalLeftChild { get; set; }
public Expr OptionalRightChild { get; set; }
public bool IsLifted {
[CompilerGenerated]
set {
IsLifted = value;
}
}
public ExprBinOp(ExpressionKind kind, CType type)
: base(kind, type)
{
}
public void SetAssignment()
{
base.Flags |= EXPRFLAG.EXF_ASSGOP;
}
}
}