mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 05:09:12 +00:00
JSSpecCompiler: Sort token types and operators alphabetically
This commit is contained in:
parent
1d825f17c0
commit
394c9b7006
Notes:
sideshowbarker
2024-07-17 08:59:18 +09:00
Author: https://github.com/DanShaders
Commit: 394c9b7006
Pull-request: https://github.com/SerenityOS/serenity/pull/23123
Reviewed-by: https://github.com/ADKaster ✅
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