functor = context.get(methodName);
}
} else {
JexlPropertyGet gfunctor = uberspect.getPropertyGet(bean, methodName, node);
if (gfunctor != null) {
functor = gfunctor.tryInvoke(bean, methodName);
}
}
// script of jexl method will do
if (functor instanceof Script) {
return ((Script) functor).execute(context, argv.length > 0 ? argv : null);