mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 16:18:12 +00:00
JSSpecCompiler: Sort token types and operators alphabetically
This commit is contained in:
parent
1d825f17c0
commit
394c9b7006
2 changed files with 35 additions and 35 deletions
|
@ -235,25 +235,25 @@ protected:
|
|||
|
||||
#define ENUMERATE_UNARY_OPERATORS(F) \
|
||||
F(Invalid) \
|
||||
F(Minus) \
|
||||
F(AssertCompletion)
|
||||
F(AssertCompletion) \
|
||||
F(Minus)
|
||||
|
||||
#define ENUMERATE_BINARY_OPERATORS(F) \
|
||||
F(Invalid) \
|
||||
F(CompareLess) \
|
||||
F(CompareGreater) \
|
||||
F(CompareNotEqual) \
|
||||
F(CompareEqual) \
|
||||
F(ArraySubscript) \
|
||||
F(Assignment) \
|
||||
F(Comma) \
|
||||
F(CompareEqual) \
|
||||
F(CompareGreater) \
|
||||
F(CompareLess) \
|
||||
F(CompareNotEqual) \
|
||||
F(Declaration) \
|
||||
F(Plus) \
|
||||
F(Division) \
|
||||
F(FunctionCall) \
|
||||
F(MemberAccess) \
|
||||
F(Minus) \
|
||||
F(Multiplication) \
|
||||
F(Division) \
|
||||
F(Comma) \
|
||||
F(MemberAccess) \
|
||||
F(FunctionCall) \
|
||||
F(ArraySubscript)
|
||||
F(Plus)
|
||||
|
||||
#define NAME(name) name,
|
||||
#define STRINGIFY(name) #name##sv,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue