mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:47:45 +00:00
CppLexer: Add token types for "&", "&&", "&=", "|", "||", "|="
This commit is contained in:
parent
345b303262
commit
598b5e4595
2 changed files with 38 additions and 0 deletions
|
@ -65,6 +65,12 @@ namespace GUI {
|
|||
__TOKEN(PercentEquals) \
|
||||
__TOKEN(Equals) \
|
||||
__TOKEN(EqualsEquals) \
|
||||
__TOKEN(And) \
|
||||
__TOKEN(AndAnd) \
|
||||
__TOKEN(AndEquals) \
|
||||
__TOKEN(Pipe) \
|
||||
__TOKEN(PipePipe) \
|
||||
__TOKEN(PipeEquals) \
|
||||
__TOKEN(Semicolon) \
|
||||
__TOKEN(DoubleQuotedString) \
|
||||
__TOKEN(SingleQuotedString) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue