(char c)
| 649 | } |
| 650 | |
| 651 | public static boolean isUnicodeLetter(char c) { |
| 652 | return c>='a' && c <='f' || c>='A' && c <='F' || c>='0' && c <='9'; |
| 653 | } |
| 654 | |
| 655 | public Token newToken(int ttype) { |
| 656 | STToken t = new STToken(input, ttype, startCharIndex, input.index() -1); |