Warning: session_start(): open(/var/lib/php/sessions/sess_ir37k3gcrq655puuognvosjlue, 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
!tok_numberFunctionNames { // short for function definition
for i { // some loop over i
if (isInteger(number = tok.get(i)) && empty(tok.get(i+1)) && isIdentifier(id = tok.get(i+2))) pcall {
replaceTokens_reTokLater(i, i+3, camelCase(numberToEnglish(parseLong(number)) + firstToUpper(id));
}
}
reTok_multi; // shortened function call
}
// I think the above is still clear enough to figure out!
// Functions get their "typical arguments" with typical types
// and always the same name. It must be possible to automate that!
// i goes over any index where the loop body makes any sense
// (determinable by looking at the calls to tok.get).