Warning: session_start(): open(/var/lib/php/sessions/sess_s3hn3igp4jkltsbchug7dt6dnp, 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 Map parseDoubleArrowTreeCI(S text) { L lines = withoutEmpties(rtrimAll(lines(text))); if (empty(lines)) null; new L> nodes; new L indents; // indent of children nodes.add(ciMap()); indents.add(countIndent(first(lines))); for (S s : lines) { int indent = countIndent(s); while (indent < last(indents)) { removeLast(nodes); removeLast(indents); } L x = splitAtDoubleArrow(s); if (l(x) == 2) // leaf last(nodes).put(first(x), second(x)); else { Map newTree = ciMap(); last(nodes).put(s, newTree); nodes.add(newTree); indents.add(indent+1); } } ret tree; }