JexlMethod method = uberspect.getMethod(obj, meth, args, info);
if (method == null && arithmetic.narrowArguments(args)) {
method = uberspect.getMethod(obj, meth, args, info);
}
if (method != null) {
result = method.invoke(obj, args);
} else {
xjexl = new JexlException(info, "failed finding method " + meth);
}
} catch (Exception xany) {
xjexl = new JexlException(info, "failed executing method " + meth, xany);