Warning: session_start(): open(/var/lib/php/sessions/sess_cha0t7gb6qcnnftsepss9vueva, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
sbool canCallWithVarargs(O o, S method, O... args) ctex {
if (o == null) false;
if (o instanceof Class) {
Class c = (Class) o;
_MethodCache cache = callOpt_getCache(c);
if (cache.findStaticMethod(method, args) != null) true;
// try varargs
L methods = cache.cache.get(method);
if (methods != null) methodSearch: for (Method m : methods) {
continue unless m.isVarArgs() && isStaticMethod(m);
if (massageArgsForVarArgsCall(m, args) != null) true;
}
} else {
Class c = o.getClass();
_MethodCache cache = callOpt_getCache(c);
if (cache.findMethod(method, args) != null) true;
// try varargs
L methods = cache.cache.get(method);
if (methods != null) methodSearch: for (Method m : methods) {
continue unless m.isVarArgs();
if (massageArgsForVarArgsCall(m, args) != null) true;
}
}
false;
}