示例#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
文件: REWhile.cs 项目: CFLShine/CFL
 public REWhile(REExpression _condition)
 {
     Condition = _condition;
 }
示例#3
0
文件: REWhile.cs 项目: CFLShine/CFL
 public REWhile(REExpression _condition, REStatement _statement)
 {
     Condition = _condition;
     Statement = _statement;
 }