1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 13:47:45 +00:00

CppLexer: Add token types for "&", "&&", "&=", "|", "||", "|="

This commit is contained in:
Nico Weber 2020-07-26 16:40:57 -04:00 committed by Andreas Kling
parent 345b303262
commit 598b5e4595
2 changed files with 38 additions and 0 deletions

View file

@ -65,6 +65,12 @@ namespace GUI {
__TOKEN(PercentEquals) \
__TOKEN(Equals) \
__TOKEN(EqualsEquals) \
__TOKEN(And) \
__TOKEN(AndAnd) \
__TOKEN(AndEquals) \
__TOKEN(Pipe) \
__TOKEN(PipePipe) \
__TOKEN(PipeEquals) \
__TOKEN(Semicolon) \
__TOKEN(DoubleQuotedString) \
__TOKEN(SingleQuotedString) \