1
Fork 0
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:
Dan Klishch 2024-01-20 20:52:37 -05:00 committed by Andrew Kaster
parent 1d825f17c0
commit 394c9b7006
2 changed files with 35 additions and 35 deletions

View file

@ -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,