static L web_nonRelationNodes(Web web) { ifdef WebWithRelationsMap if (web.relations != null) ret listMinusSet(web.nodes, values(web.relations)); endifdef new L l; for (WebNode n : web.nodes) if (!n instanceof WebRelation) l.add(n); ret l; }