| Index: src/messages.h
|
| diff --git a/src/messages.h b/src/messages.h
|
| index e0df3260375212de37511fb16f0824e59454b9bb..9c9a506b519ead77e79643d6ff126c7b5b390dea 100644
|
| --- a/src/messages.h
|
| +++ b/src/messages.h
|
| @@ -156,6 +156,8 @@ class CallSite {
|
| "Object.prototype.__defineGetter__: Expecting function") \
|
| T(ObjectGetterCallable, "Getter must be a function: %") \
|
| T(ObjectNotExtensible, "Can't add property %, object is not extensible") \
|
| + T(ObjectSetPrototypeNotExtensible, \
|
| + "Can't set prototype, object is not extensible") \
|
| T(ObjectSetterExpectingFunction, \
|
| "Object.prototype.__defineSetter__: Expecting function") \
|
| T(ObjectSetterCallable, "Setter must be a function: %") \
|
| @@ -177,6 +179,7 @@ class CallSite {
|
| T(PromiseCyclic, "Chaining cycle detected for promise %") \
|
| T(PropertyDescObject, "Property description must be an object: %") \
|
| T(PropertyNotFunction, "Property '%' of object % is not a function") \
|
| + T(ProtoNotSet, "Could not set prototype '%' on '%'' ") \
|
| T(ProtoObjectOrNull, "Object prototype may only be an Object or null: %") \
|
| T(PrototypeParentNotAnObject, \
|
| "Class extends value does not have valid prototype property %") \
|
|
|