Warning: session_start(): open(/var/lib/php/sessions/sess_frp0j1pg1do07g8pdik01l4j4r, 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 L gazelle_reason_repeat(S input, O... _) {
new L out;
int steps = 0, max = 10;
while (steps++ < max) {
addAll(out, (L) callF(optPar sendToModules(_), input));
L l = gazelle_reasonWithPreAndPost(input, paramsMinus(_, 'sendToModules));
// commit to one entry
if (empty(l)) break;
gazelle_sortBeforeCommit(l);
GazelleTree t = first(l);
if (boolPar debug(_) || boolPar debugCommit(_))
print("Committing to: " + t.line + " (out of " + l(l) + ")");
LS lines = tok_splitAtPlusAtBeginningOfLine(t.line);
if (l(lines) == 2 && t.rule() != null && contains(t.rule().comments, "out 2 = process")) {
print("splitting!");
t.line = first(lines);
out.add(t);
input = second(lines);
continue;
}
out.add(t);
break;
}
ret out;
}