@return chars[pos+1] or '\0' if out-of-bounds.
()
| 252 | * @return <tt>chars[pos+1]</tt> or '\0' if out-of-bounds. |
| 253 | */ |
| 254 | private char peek() { |
| 255 | return (pos + 1 >= chars.length) ? 0 : chars[pos + 1]; |
| 256 | } |
| 257 | |
| 258 | |
| 259 | /** |
no outgoing calls
no test coverage detected