static L jsonDecodeList(S s) { O o = jsonDecode(s); if (o instanceof L) ret (L) o; if (o instanceof Map && empty((Map) o)) ret ll(); else fail("Not a JSON list: " + s); }