1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 16:27:35 +00:00

Meta: Add support for enumerations to the IDL compiler

This commit is contained in:
Ali Mohammad Pur 2022-02-15 13:10:08 +03:30 committed by Ali Mohammad Pur
parent 4f2d898a51
commit ce6adf25e5
2 changed files with 287 additions and 112 deletions

View file

@ -287,7 +287,8 @@
M(BadArgCountOne, "{}() needs one argument") \
M(BadArgCountAtLeastOne, "{}() needs at least one argument") \
M(BadArgCountMany, "{}() needs {} arguments") \
M(NotEnoughMemoryToAllocate, "Not enough memory to allocate {} bytes")
M(NotEnoughMemoryToAllocate, "Not enough memory to allocate {} bytes") \
M(InvalidEnumerationValue, "Invalid value '{}' for enumeration type '{}'")
namespace JS {