static VirtualNodeIndex hugeEnglishDictionary_virtualNodeIndex() { ret new VirtualNodeIndex { SortedCondensedStrings2 dict = hugeEnglishDictionary(); int numWebs() { ret l(dict); } L get(S query) { query = lower(query); if (!dict.contains(query)) ret emptyList(); ret ll(web_firstNode(webFromTriple(query, "is", "an english word according to the huge dictionary"))); } Set implicitConcepts() { ret implicitConcepts; } }; }