Warning: session_start(): open(/var/lib/php/sessions/sess_gotj2fiegdqbqkmn4fptc1386c, 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 preciseCall_debug;
static Object preciseCall(Object o, String method, Object... args) ctex {
if (o instanceof Class) {
L methods = findMethodsNamed2((Class) o, method, true);
new Lowest best;
for (Method m : methods) {
int score = methodApplicabilityScore(m, args);
if (score < Int.MAX_VALUE) {
if (preciseCall_debug)
print("Method score: " + m + " " + score);
best.put(m, score);
}
}
Method m = best.get();
if (m == null) fail("No suitable method found: " + methodSignature(method, args));
ret invokeMethod(m, null, args);
} else {
throw todo();
}
}