static void web_expandOperations2(Web web) { for (LispStatement rule : lispStatementsByHead("pqnfhkzxoqkaoyqk")) { S toExpand = rule.term.s(0); //print("Expanding " + toExpand); for (WebNode node : web.clearPot(rule.globalID)) for (Lisp lbl : node.labels) if (lbl.is(toExpand)) { //print(" Expanding " + lbl); for (Lisp child : lbl) web.node(child); } } }