Skip to content

Instantly share code, notes, and snippets.

@Interfere
Created March 22, 2017 08:50
Show Gist options
  • Save Interfere/72e4c31681926753bfdf1d3f080e60b8 to your computer and use it in GitHub Desktop.
Save Interfere/72e4c31681926753bfdf1d3f080e60b8 to your computer and use it in GitHub Desktop.
Exclamation and question marks
case '!':
if (isLeftBound(TokStart, BufferStart))
return formToken(tok::exclaim_postfix, TokStart);
return lexOperatorIdentifier();
case '?':
if (isLeftBound(TokStart, BufferStart))
return formToken(tok::question_postfix, TokStart);
return lexOperatorIdentifier();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment