org.snapscript.tree.operation.PostfixIncrement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snap Show documentation
Show all versions of snap Show documentation
Dynamic scripting for the JVM
package org.snapscript.tree.operation;
import org.snapscript.core.Evaluation;
import org.snapscript.core.Scope;
import org.snapscript.core.Value;
import org.snapscript.core.ValueType;
import org.snapscript.parse.Token;
public class PostfixIncrement implements Evaluation {
private final Evaluation evaluation;
private final Token operator;
public PostfixIncrement(Evaluation evaluation, Token operator) {
this.evaluation = evaluation;
this.operator = operator;
}
@Override
public Value evaluate(Scope scope, Object left) throws Exception { // this is rubbish
Value reference = evaluation.evaluate(scope, left);
Number number = reference.getNumber();
NumericConverter converter = NumericConverter.resolveConverter(number);
Value value = converter.increment(number);
Number result = value.getNumber();
reference.setValue(result);
return ValueType.getTransient(number);
}
}