()
| 88 | } |
| 89 | |
| 90 | protected int consume() { |
| 91 | try { |
| 92 | ++this.columnNumber; |
| 93 | return this.stream.consume(); |
| 94 | } catch (IOException e) { |
| 95 | throw new LexerException(e); |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | protected Token newToken(TokenType type, String text) { |
| 100 | if (!type.isSkippable()) { |
no test coverage detected