mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 04:38:11 +00:00
CppLexer: Add token types for "<", "<=", "<<", "<<=", "<>"
This commit is contained in:
parent
23082e528f
commit
97c4344f33
2 changed files with 41 additions and 0 deletions
|
@ -43,6 +43,15 @@ namespace GUI {
|
|||
__TOKEN(RightCurly) \
|
||||
__TOKEN(LeftBracket) \
|
||||
__TOKEN(RightBracket) \
|
||||
__TOKEN(Less) \
|
||||
__TOKEN(Greater) \
|
||||
__TOKEN(LessEquals) \
|
||||
__TOKEN(GreaterEquals) \
|
||||
__TOKEN(LessLess) \
|
||||
__TOKEN(GreaterGreater) \
|
||||
__TOKEN(LessLessEquals) \
|
||||
__TOKEN(GreaterGreaterEquals) \
|
||||
__TOKEN(LessGreater) \
|
||||
__TOKEN(Comma) \
|
||||
__TOKEN(Plus) \
|
||||
__TOKEN(PlusEquals) \
|
||||
|
@ -52,6 +61,8 @@ namespace GUI {
|
|||
__TOKEN(AsteriskEquals) \
|
||||
__TOKEN(Slash) \
|
||||
__TOKEN(SlashEquals) \
|
||||
__TOKEN(Percent) \
|
||||
__TOKEN(PercentEquals) \
|
||||
__TOKEN(Equals) \
|
||||
__TOKEN(EqualsEquals) \
|
||||
__TOKEN(Semicolon) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue