return x != null ? x : resolveVariable(resolver, (String)_value, ctx);
*/
return resolveVariable(resolver, (String)_value, ctx);
}
} else if (_type == TokenType.FUNCTION) {
final FunctionMapper mapper = ctx.getFunctionMapper();
final Function fn = mapper.resolveFunction("", (String)_value);
if (fn == null) { //cannot find the specified function
throw new SSErrorXelException(SSError.NAME);
}
Object[] args = new Object[getOperands().size()];
int j = 0;