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

Method invoke

src/jvm/clojure/lang/EdnReader.java:468–476  ·  view source on GitHub ↗
(Object reader, Object semicolon, Object opts)

Source from the content-addressed store, hash-verified

466
467public static class CommentReader extends AFn{
468 public Object invoke(Object reader, Object semicolon, Object opts) {
469 Reader r = (Reader) reader;
470 int ch;
471 do
472 {
473 ch = read1(r);
474 } while(ch != -1 && ch != '\n' && ch != '\r');
475 return r;
476 }
477
478}
479

Callers

nothing calls this directly

Calls 1

read1Method · 0.45

Tested by

no test coverage detected