blob: b0cb735a874895835f6832a639ef3b1f6b89cf95 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2008 The University of York.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
**********************************************************************/
package org.eclipse.epsilon.eol.dom;
import org.eclipse.epsilon.eol.exceptions.EolRuntimeException;
import org.eclipse.epsilon.eol.execute.context.IEolContext;
public class AndOperatorExpression extends OperatorExpression {
public AndOperatorExpression() {}
public AndOperatorExpression(Expression firstOperand, Expression secondOperand) {
super(firstOperand, secondOperand);
}
@Override
public Object execute(IEolContext context) throws EolRuntimeException {
Object o1 = context.getExecutorFactory().execute(firstOperand,context);
if (o1 instanceof Boolean) {
Boolean b1 = (Boolean) o1;
if (b1.booleanValue() == false) {
return false;
}
else {
Object o2 = context.getExecutorFactory().execute(secondOperand,context);
if (o2 instanceof Boolean){
return (Boolean) o2;
}
else {
throw new EolRuntimeException("Operator 'and' applies only to operands of type Boolean", this);
}
}
}
else {
throw new EolRuntimeException("Operator 'and' applies only to operands of type Boolean", this);
}
}
}