(Reader r)
| 95 | } |
| 96 | |
| 97 | static public int read1(Reader r){ |
| 98 | try |
| 99 | { |
| 100 | return r.read(); |
| 101 | } |
| 102 | catch(IOException e) |
| 103 | { |
| 104 | throw Util.sneakyThrow(e); |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | static final Keyword EOF = Keyword.intern(null,"eof"); |
| 109 |
no test coverage detected