mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 05:39:11 +00:00
CppLexer: Add token types for "!", "!=", "~", "?", ":"
This commit is contained in:
parent
29bc978564
commit
95113d15fe
Notes:
sideshowbarker
2024-07-19 04:35:00 +09:00
Author: https://github.com/nico
Commit: 95113d15fe
Pull-request: https://github.com/SerenityOS/serenity/pull/2893
2 changed files with 21 additions and 0 deletions
|
@ -67,6 +67,8 @@ namespace GUI {
|
|||
__TOKEN(PercentEquals) \
|
||||
__TOKEN(Caret) \
|
||||
__TOKEN(CaretEquals) \
|
||||
__TOKEN(ExclamationMark) \
|
||||
__TOKEN(ExclamationMarkEquals) \
|
||||
__TOKEN(Equals) \
|
||||
__TOKEN(EqualsEquals) \
|
||||
__TOKEN(And) \
|
||||
|
@ -75,6 +77,9 @@ namespace GUI {
|
|||
__TOKEN(Pipe) \
|
||||
__TOKEN(PipePipe) \
|
||||
__TOKEN(PipeEquals) \
|
||||
__TOKEN(Tilde) \
|
||||
__TOKEN(QuestionMark) \
|
||||
__TOKEN(Colon) \
|
||||
__TOKEN(Semicolon) \
|
||||
__TOKEN(DoubleQuotedString) \
|
||||
__TOKEN(SingleQuotedString) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue