org.snapscript.tree.literal.Literal 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.literal;
import org.snapscript.core.Evaluation;
import org.snapscript.core.constraint.Constraint;
import org.snapscript.core.error.InternalStateException;
import org.snapscript.core.scope.Scope;
import org.snapscript.core.variable.Value;
public abstract class Literal extends Evaluation {
private volatile LiteralValue value;
protected Literal() {
super();
}
@Override
public Constraint compile(Scope scope, Constraint left) throws Exception {
if(value == null) {
value = create(scope);
}
return value.constraint;
}
@Override
public Value evaluate(Scope scope, Value left) throws Exception {
if(value == null) {
value = create(scope);
}
return value;
}
protected abstract LiteralValue create(Scope scope) throws Exception;
protected static class LiteralValue extends Value {
private final Constraint constraint;
private final Object value;
public LiteralValue(Object value, Constraint constraint) {
this.constraint = constraint;
this.value = value;
}
@Override
public boolean isConstant() {
return true;
}
@Override
public Constraint getConstraint() {
return constraint;
}
@Override
public T getValue() {
return (T)value;
}
@Override
public void setValue(Object value){
throw new InternalStateException("Illegal modification of literal '" + value + "'");
}
@Override
public String toString() {
return String.valueOf(value);
}
}
}