!7 sclass BottomUpParser > DynSCPWithInput { start { set flag DynModule. // for transpilation dm_useLocallyCopiedMechLists(); set flag NoFancyMechParsing. ai_parser_activateStandardFunctions(); } void update(S s) { temp enter(); if (!isShowing()) { inputChooser.forgetInput(); ret; } PTElement root = ai_parseToTreeWithGuessing(s); /*for (PTElement child : root.children) print(ai_parseTree_sortingFunction().get(child) + " - " + className(child) + " - " + child);*/ setComponent(jDynamicTree(root, func(final PTElement e) -> L { e == null ? null : e.children })); } }