(Object reader, Object firstChar, Object opts)
| 775 | |
| 776 | public static class TaggedReader extends AFn{ |
| 777 | public Object invoke(Object reader, Object firstChar, Object opts){ |
| 778 | PushbackReader r = (PushbackReader) reader; |
| 779 | Object name = read(r, true, null, false, opts); |
| 780 | if (!(name instanceof Symbol)) |
| 781 | throw new RuntimeException("Reader tag must be a symbol"); |
| 782 | Symbol sym = (Symbol)name; |
| 783 | return readTagged(r, sym, (IPersistentMap) opts); |
| 784 | } |
| 785 | |
| 786 | static Keyword READERS = Keyword.intern(null,"readers"); |
| 787 | static Keyword DEFAULT = Keyword.intern(null,"default"); |
nothing calls this directly
no test coverage detected