(PushbackReader r, Object opts)
| 194 | static public final Keyword COND_PRESERVE = Keyword.intern(null, "preserve"); |
| 195 | |
| 196 | static public Object read(PushbackReader r, Object opts){ |
| 197 | boolean eofIsError = true; |
| 198 | Object eofValue = null; |
| 199 | if(opts != null && opts instanceof IPersistentMap) |
| 200 | { |
| 201 | Object eof = ((IPersistentMap)opts).valAt(OPT_EOF, EOFTHROW); |
| 202 | if(!EOFTHROW.equals(eof)) { |
| 203 | eofIsError = false; |
| 204 | eofValue = eof; |
| 205 | } |
| 206 | } |
| 207 | return read(r,eofIsError,eofValue,false,opts); |
| 208 | } |
| 209 | |
| 210 | static public Object read(PushbackReader r, boolean eofIsError, Object eofValue, boolean isRecursive) |
| 211 | { |
no test coverage detected