Package org.formulacompiler.compiler.internal.model.optimizer.consteval

Source Code of org.formulacompiler.compiler.internal.model.optimizer.consteval.EvalRangeValue

/*
* Copyright (c) 2006-2009 by Abacus Research AG, Switzerland.
* All rights reserved.
*
* This file is part of the Abacus Formula Compiler (AFC).
*
* For commercial licensing, please contact sales(at)formulacompiler.com.
*
* AFC is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* AFC is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with AFC.  If not, see <http://www.gnu.org/licenses/>.
*/

package org.formulacompiler.compiler.internal.model.optimizer.consteval;

import org.formulacompiler.compiler.internal.expressions.ExpressionNode;
import org.formulacompiler.compiler.internal.expressions.ExpressionNodeForArrayReference;
import org.formulacompiler.compiler.internal.expressions.ExpressionNodeForConstantValue;
import org.formulacompiler.compiler.internal.expressions.TypedResult;
import org.formulacompiler.compiler.internal.model.interpreter.InterpretedNumericType;


public class EvalRangeValue extends EvalShadow
{

  public EvalRangeValue( ExpressionNode _node, InterpretedNumericType _type )
  {
    super( _node, _type );
  }

  @Override
  protected TypedResult evaluateToConst( TypedResult... _args )
  {
    final ExpressionNodeForArrayReference rangeNode = (ExpressionNodeForArrayReference) node();
    final ExpressionNodeForArrayReference result = new ExpressionNodeForArrayReference( rangeNode.arrayDescriptor() );
    result.setDataType( rangeNode.getDataType() );
    for (TypedResult arg : _args) {
      if (arg instanceof ExpressionNode) {
        result.addArgument( (ExpressionNode) arg );
      }
      else {
        result.addArgument( new ExpressionNodeForConstantValue( arg.getConstantValue(), arg.getDataType() ) );
      }
    }
    return result;
  }


}
TOP

Related Classes of org.formulacompiler.compiler.internal.model.optimizer.consteval.EvalRangeValue

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.