Checks if the current file has more input. @return True if more reading is possible
()
| 128 | * @return True if more reading is possible |
| 129 | */ |
| 130 | boolean hasMoreInput() { |
| 131 | return current.cursor < current.stream.length; |
| 132 | } |
| 133 | |
| 134 | int nextChar() { |
| 135 | if (!hasMoreInput()) { |
no outgoing calls
no test coverage detected