org.snapscript.tree.condition.Choice Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snap-all Show documentation
Show all versions of snap-all Show documentation
Dynamic scripting for the JVM
package org.snapscript.tree.condition;
import static org.snapscript.core.variable.Value.NULL;
import org.snapscript.core.Evaluation;
import org.snapscript.core.constraint.Constraint;
import org.snapscript.core.scope.Scope;
import org.snapscript.core.variable.Value;
public class Choice extends Evaluation {
private final Evaluation condition;
private final Evaluation positive;
private final Evaluation negative;
public Choice(Evaluation condition, Evaluation positive, Evaluation negative) {
this.condition = condition;
this.positive = positive;
this.negative = negative;
}
@Override
public void define(Scope scope) throws Exception {
condition.define(scope);
positive.define(scope);
negative.define(scope);
}
@Override
public Constraint compile(Scope scope, Constraint left) throws Exception {
condition.compile(scope, null);
negative.compile(scope, null);
return positive.compile(scope, null);
}
@Override
public Value evaluate(Scope scope, Value left) throws Exception {
Value result = condition.evaluate(scope, NULL);
Object value = result.getValue();
if(BooleanChecker.isTrue(value)) {
return positive.evaluate(scope, left);
}
return negative.evaluate(scope, left);
}
}