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

Method unread

src/jvm/clojure/lang/EdnReader.java:74–84  ·  view source on GitHub ↗
(PushbackReader r, int ch)

Source from the content-addressed store, hash-verified

72}
73
74static void unread(PushbackReader r, int ch) {
75 if(ch != -1)
76 try
77 {
78 r.unread(ch);
79 }
80 catch(IOException e)
81 {
82 throw Util.sneakyThrow(e);
83 }
84}
85
86public static class ReaderException extends RuntimeException{
87 final int line;

Callers 6

readMethod · 0.95
readTokenMethod · 0.95
readNumberMethod · 0.95
readUnicodeCharMethod · 0.95
readDelimitedListMethod · 0.95
invokeMethod · 0.45

Calls 1

sneakyThrowMethod · 0.95

Tested by

no test coverage detected