(int i)
| 32 | return Token.EOF; |
| 33 | } |
| 34 | private boolean fillQueue(int i) throws ParseException { |
| 35 | while (i >= queue.size()) |
| 36 | if (hasMore) |
| 37 | readLine(); |
| 38 | else |
| 39 | return false; |
| 40 | return true; |
| 41 | } |
| 42 | protected void readLine() throws ParseException { |
| 43 | String line; |
| 44 | try { |