scope parse3_cachedInput. static Map #cache = synchronizedMRUCache(1000); static L parse3_cachedInput(S s) { LS tok = cache.get(s); if (tok == null) cache.put(s, tok = parse3(s)); ret tok; } end scope