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

CppLexer: Add token types for "::", "::*", ".*", "->*"

This commit is contained in:
Nico Weber 2020-07-26 18:35:17 -04:00 committed by Andreas Kling
parent 1992dbd637
commit 7a1c328417
2 changed files with 30 additions and 2 deletions

View file

@ -80,9 +80,13 @@ namespace GUI {
__TOKEN(Tilde) \
__TOKEN(QuestionMark) \
__TOKEN(Colon) \
__TOKEN(ColonColon) \
__TOKEN(ColonColonAsterisk) \
__TOKEN(Semicolon) \
__TOKEN(Dot) \
__TOKEN(DotAsterisk) \
__TOKEN(Arrow) \
__TOKEN(ArrowAsterisk) \
__TOKEN(DoubleQuotedString) \
__TOKEN(SingleQuotedString) \
__TOKEN(EscapeSequence) \