LibJS: Add a variant of ErrorType::NotA named NotAnObjectOfType

This is a clearer name. Subsequent commits will convert files to use the
new name, then the old name will be deleted.
This commit is contained in:
Timothy Flynn 2021-09-11 16:41:47 -04:00 committed by Andreas Kling
parent 76589d6728
commit fd8ec1fffa
Notes: sideshowbarker 2024-07-18 04:14:40 +09:00

View file

@ -63,6 +63,7 @@
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") \
M(NotAnObjectOrString, "{} is neither an object nor a string") \
M(NotAString, "{} is not a string") \