1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 11:55:12 +00:00

CppLexer: Add token types for "++", "--"

This commit is contained in:
Nico Weber 2020-07-26 18:13:13 -04:00 committed by Andreas Kling
parent 598b5e4595
commit c38b8d63f8
2 changed files with 28 additions and 2 deletions

View file

@ -54,8 +54,10 @@ namespace GUI {
__TOKEN(LessGreater) \
__TOKEN(Comma) \
__TOKEN(Plus) \
__TOKEN(PlusPlus) \
__TOKEN(PlusEquals) \
__TOKEN(Minus) \
__TOKEN(MinusMinus) \
__TOKEN(MinusEquals) \
__TOKEN(Asterisk) \
__TOKEN(AsteriskEquals) \