(int c)
| 301 | } |
| 302 | |
| 303 | private static boolean isDigit(int c) { |
| 304 | return c >= '0' && c <= '9'; |
| 305 | } |
| 306 | |
| 307 | private static String describeChar(int c) { |
| 308 | return c == Input.EOF ? "<EOF>" : "'" + (char) c + "'"; |
no outgoing calls
no test coverage detected