return null;
}
private Expr getRHS(String text, int offset, boolean str) {
if (str) {
return new ExprString(text.substring(offset));
} else {
try {
return new ExprDouble(Double
.parseDouble(text.substring(offset)));
} catch (NumberFormatException e) {