Warning: session_start(): open(/var/lib/php/sessions/sess_l9f9itd47pbjgj13npfi03n07s, 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
// returns number of calls removed
static int dropFunctionCalls_reTok(LS tok, S functionName) {
int removed = 0;
while true {
var r = tok_findFunctionCall(tok, functionName);
if (r != null) {
clearTokens_reTok(tok, r);
++removed;
} else
break;
}
ret removed;
}