Added support for temporary variables

This commit is contained in:
TomyLobo 2011-10-29 21:07:31 +02:00
parent 2719308ada
commit 77d1317964

View File

@ -33,6 +33,7 @@ import com.sk89q.worldedit.expression.lexer.tokens.Token;
import com.sk89q.worldedit.expression.runtime.Constant;
import com.sk89q.worldedit.expression.runtime.Functions;
import com.sk89q.worldedit.expression.runtime.RValue;
import com.sk89q.worldedit.expression.runtime.Variable;
/**
* Processes a list of tokens into an executable tree.
@ -103,7 +104,12 @@ public class Parser {
} else {
RValue variable = variables.get(identifierToken.value);
if (variable == null) {
throw new ParserException(current.getPosition(), "Variable '" + identifierToken.value + "' not found");
if (next instanceof OperatorToken && ((OperatorToken)next).operator.equals("=")) {
// Ugly hack to make temporary variables work while not sacrificing error reporting.
variables.put(identifierToken.value, variable = new Variable(0));
} else {
throw new ParserException(current.getPosition(), "Variable '" + identifierToken.value + "' not found");
}
}
halfProcessed.add(variable);
}