(String s, IPersistentMap opts)
| 63 | } |
| 64 | |
| 65 | static public Object readString(String s, IPersistentMap opts){ |
| 66 | PushbackReader r = new PushbackReader(new java.io.StringReader(s)); |
| 67 | return read(r, opts); |
| 68 | } |
| 69 | |
| 70 | static boolean isWhitespace(int ch){ |
| 71 | return Character.isWhitespace(ch) || ch == ','; |