Skip to content

Instantly share code, notes, and snippets.

@Interfere
Created March 22, 2017 08:38
Show Gist options
  • Save Interfere/30fe63d9f9e3eeca1ac0a73abc763131 to your computer and use it in GitHub Desktop.
Save Interfere/30fe63d9f9e3eeca1ac0a73abc763131 to your computer and use it in GitHub Desktop.
Lexer consumes all whitespaces
case '\n':
case '\r':
NextToken.setAtStartOfLine(true);
goto Restart; // Skip whitespace.
case ' ':
case '\t':
case '\f':
case '\v':
goto Restart; // Skip whitespace.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment