1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:17:36 +00:00

LibJS: Remove ErrorType::NotA and ErrorType::NotAn

This commit is contained in:
Timothy Flynn 2021-09-11 16:46:42 -04:00 committed by Andreas Kling
parent 470262c8ab
commit 6d55e0572d

View file

@ -57,11 +57,9 @@
M(JsonMalformed, "Malformed JSON string") \
M(NegativeExponent, "Exponent must be positive") \
M(NonExtensibleDefine, "Cannot define property {} on non-extensible object") \
M(NotA, "Not an object of type {}") \
M(NotAConstructor, "{} is not a constructor") \
M(NotAFunction, "{} is not a function") \
M(NotAFunctionNoParam, "Not a function") \
M(NotAn, "Not an {} object") \
M(NotAnObject, "{} is not an object") \
M(NotAnObjectOfType, "Not an object of type {}") \
M(NotAnObjectOrNull, "{} is neither an object nor null") \