Warning: session_start(): open(/var/lib/php/sessions/sess_r3d80gm724e1ost18jh7aa1tfs, 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
static Method findMethod_precise_onTypes(O o, S method, Class... argTypes) ctex {
if (o cast Class) {
_MethodCache cache = callOpt_getCache(o);
L methods = cache.cache.get(method);
new Lowest best;
if (methods != null) for (Method m : methods) {
continue unless isStaticMethod(m);
int score = methodApplicabilityScore_onTypes(m, argTypes);
if (score < Int.MAX_VALUE) {
if (preciseCall_debug)
print("Method score: " + m + " " + score);
best.put(m, score);
}
}
ret best!;
} else
throw todo();
}