Microsoft.CSharp.RuntimeBinder.Semantics.ExprBinOp
namespace Microsoft.CSharp.RuntimeBinder.Semantics
{
internal sealed class ExprBinOp : ExprOperator
{
public Expr OptionalLeftChild { get; set; }
public Expr OptionalRightChild { get; set; }
public bool IsLifted {
set;
}
public ExprBinOp(ExpressionKind kind, CType type, Expr left, Expr right);
public ExprBinOp(ExpressionKind kind, CType type, Expr left, Expr right, Expr call, MethPropWithInst userMethod);
public void SetAssignment();
}
}