1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:38:11 +00:00

LibJS: Remove ErrorType::FixmeAddAnErrorString

Just add a proper ErrorType the first time, it's not that hard. We can
always iterate on the message later.
This commit is contained in:
Linus Groh 2021-10-20 17:58:07 +01:00
parent cf109533de
commit d3ef08217b

View file

@ -238,7 +238,6 @@
M(BadArgCountOne, "{}() needs one argument") \
M(BadArgCountAtLeastOne, "{}() needs at least one argument") \
M(BadArgCountMany, "{}() needs {} arguments") \
M(FixmeAddAnErrorString, "FIXME: Add a string for this error.") \
M(NotEnoughMemoryToAllocate, "Not enough memory to allocate {} bytes")
namespace JS {