Changed signature of the optimize() method to return an RValue.

Dieser Commit ist enthalten in:
TomyLobo 2011-11-24 20:50:07 +01:00
Ursprung 7cbb7da80b
Commit 05b427316d
4 geänderte Dateien mit 4 neuen und 4 gelöschten Zeilen

Datei anzeigen

@ -84,7 +84,7 @@ public class Function extends Node {
}
@Override
public Node optimize() throws EvaluationException {
public RValue optimize() throws EvaluationException {
final RValue[] optimizedArgs = new RValue[args.length];
boolean optimizable = !method.isAnnotationPresent(Dynamic.class);
int position = getPosition();

Datei anzeigen

@ -34,7 +34,7 @@ public abstract class Node implements RValue {
@Override
public abstract String toString();
public Node optimize() throws EvaluationException {
public RValue optimize() throws EvaluationException {
return this;
}

Datei anzeigen

@ -29,5 +29,5 @@ import com.sk89q.worldedit.expression.Identifiable;
public interface RValue extends Identifiable {
public double getValue() throws EvaluationException;
public Node optimize() throws EvaluationException;
public RValue optimize() throws EvaluationException;
}

Datei anzeigen

@ -66,7 +66,7 @@ public class Sequence extends Node {
}
@Override
public Node optimize() throws EvaluationException {
public RValue optimize() throws EvaluationException {
List<RValue> newSequence = new ArrayList<RValue>();
RValue droppedLast = null;