コード例 #1
0
ファイル: RESmaller.cs プロジェクト: CFLShine/CFL
        public override REBase Copy()
        {
            REExpression _operandL = (OperandLeft != null)? (REExpression)OperandLeft.Copy() : null;
            REExpression _operandR = (OperandRight != null)? (REExpression)OperandRight.Copy() : null;

            return(new RESmaller(_operandL, _operandR));
        }
コード例 #2
0
ファイル: REAssign.cs プロジェクト: CFLShine/CFL
 public override REBase Copy()
 {
     return(new REAdd(OperandLeft.Copy(), OperandRight.Copy()));
 }