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

This commit is contained in:
Nico Weber 2020-07-26 18:35:17 -04:00 committed by Andreas Kling
commit 7a1c328417
Notes: sideshowbarker 2024-07-19 04:34:53 +09:00
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) \