![JAR search and dependency download from the Maven repository](/logo.png)
org.snapscript.tree.literal.NumberLiteral 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.InternalStateException;
import org.snapscript.core.Scope;
import org.snapscript.core.Value;
import org.snapscript.parse.NumberToken;
import org.snapscript.parse.StringToken;
import org.snapscript.tree.operation.SignOperator;
public class NumberLiteral extends Literal {
private final SignOperator operator;
private final NumberToken token;
public NumberLiteral(NumberToken token) {
this(null, token);
}
public NumberLiteral(StringToken sign, NumberToken token) {
this.operator = SignOperator.resolveOperator(sign);
this.token = token;
}
@Override
protected Value create(Scope scope) throws Exception {
Number number = token.getValue();
if(number == null) {
throw new InternalStateException("Number value was null");
}
return operator.operate(number);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy