예제 #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;
 }