Skip to content

Instantly share code, notes, and snippets.

@Interfere
Created March 20, 2017 06:39
Show Gist options
  • Save Interfere/959e2ee59b19ddef0e406cda9dbb094e to your computer and use it in GitHub Desktop.
Save Interfere/959e2ee59b19ddef0e406cda9dbb094e to your computer and use it in GitHub Desktop.
Lexer::lex routine
void lex(Token &Result) {
Result = NextToken;
if (Result.isNot(tok::eof))
lexImpl();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment