Fetches next non-whitespace token that's not part of single or multiline comment. @param lexer input lexer @return with next valid token or null if end of input is reached .
(GenericLexer lexer)
| 438 | * @return with next valid token or null if end of input is reached . |
| 439 | */ |
| 440 | public static CharSequence fetchNext(GenericLexer lexer) throws SqlException { |
| 441 | return fetchNext(lexer, false); |
| 442 | } |
| 443 | |
| 444 | /** |
| 445 | * Fetches next non-whitespace token that's not part of single or multiline comment. |