()
| 954 | } |
| 955 | |
| 956 | protected char hexDigit() { |
| 957 | int c = la(); |
| 958 | if ((c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F')) { |
| 959 | return (char) consume(); |
| 960 | } |
| 961 | |
| 962 | throw new LexerException("expected hex digit, but found '" + c + "'"); |
| 963 | } |
| 964 | |
| 965 | protected void lineTerminatorSequence() { |
| 966 | int c = la(); |
no test coverage detected