(String s)
| 257 | } |
| 258 | |
| 259 | static boolean isPosDigit(String s) { |
| 260 | if(s.length() != 1) |
| 261 | return false; |
| 262 | char ch = s.charAt(0); |
| 263 | return ch <= '9' && ch >= '1'; |
| 264 | } |
| 265 | |
| 266 | public static Symbol arrayTypeToSymbol(Class c) { |
| 267 | int dim = 0; |
no test coverage detected