Warning: session_start(): open(/var/lib/php/sessions/sess_g8dldrih11klslb39vsitm7s8k, 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
ifclass ListAndIndex
static int tokenToCharIndex(ListAndIndex ptr) {
ret ptr == null ? -1 : tokenToCharIndex(ptr.tok(), ptr.idx());
}
endif
static int tokenToCharIndex(LS tok, int tokenIndex) {
if (tokenIndex < 0) ret -1;
int idx = 0;
tokenIndex = min(tokenIndex, l(tok));
for i to tokenIndex: idx += l(tok.get(i));
ret idx;
}