MCPcopy Index your code
hub / github.com/clojure/clojure / invoke

Method invoke

src/jvm/clojure/lang/EdnReader.java:716–726  ·  view source on GitHub ↗
(Object reader, Object quote, Object opts)

Source from the content-addressed store, hash-verified

714 Symbol.intern("NaN"), Double.NaN);
715
716 public Object invoke(Object reader, Object quote, Object opts) {
717 PushbackReader r = (PushbackReader) reader;
718 Object o = read(r, true, null, true, opts);
719
720 if (!(o instanceof Symbol))
721 throw Util.runtimeException("Invalid token: ##" + o);
722 if (!(specials.containsKey(o)))
723 throw Util.runtimeException("Unknown symbolic value: ##" + o);
724
725 return specials.valAt(o);
726 }
727}
728
729public static List readDelimitedList(char delim, PushbackReader r, boolean isRecursive, Object opts) {

Callers

nothing calls this directly

Calls 4

runtimeExceptionMethod · 0.95
containsKeyMethod · 0.65
valAtMethod · 0.65
readMethod · 0.45

Tested by

no test coverage detected