Warning: session_start(): open(/var/lib/php/sessions/sess_1coo7vetne3glk05llbbg80qi0, 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> indentedStringsToForest(LS l) {
if (empty(l)) ret emptyList();
int baseIndent = indentWidth(first(l));
new L> forest;
for ping (int i = 0; i < l(l); ) {
int j = i+1;
while (j < l(l) && indentWidth(l.get(j)) > baseIndent) ++j;
forest.add(new Tree(ltrim(l.get(i)), indentedStringsToForest(subList(l, i+1, j))));
i = j;
}
ret forest;
}