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

Method unread

src/jvm/clojure/lang/LispReader.java:136–146  ·  view source on GitHub ↗
(PushbackReader r, int ch)

Source from the content-addressed store, hash-verified

134}
135
136static void unread(PushbackReader r, int ch) {
137 if(ch != -1)
138 try
139 {
140 r.unread(ch);
141 }
142 catch(IOException e)
143 {
144 throw Util.sneakyThrow(e);
145 }
146}
147
148public static class ReaderException extends RuntimeException implements IExceptionInfo{
149 public final int line;

Callers 9

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

Calls 1

sneakyThrowMethod · 0.95

Tested by

no test coverage detected