| Index: src/messages.h
 | 
| diff --git a/src/messages.h b/src/messages.h
 | 
| index 5527929f745a243fda4cf0738c6dc389f10ef5ad..43fbc71c5b356a426c568acdbfa5b597d5cf1edc 100644
 | 
| --- a/src/messages.h
 | 
| +++ b/src/messages.h
 | 
| @@ -227,8 +227,12 @@ class CallSite {
 | 
|    T(StrongArity,                                                               \
 | 
|      "In strong mode, calling a function with too few arguments is deprecated") \
 | 
|    T(StrongImplicitCast, "In strong mode, implicit conversions are deprecated") \
 | 
| +  T(StrongRedefineDisallowed,                                                  \
 | 
| +    "Cannot redefine non-configurable property '%' of strong object % to be "  \
 | 
| +    "non-writable")                                                            \
 | 
|    T(StrongSetProto,                                                            \
 | 
| -    "On strong object %, redefining the internal prototype is deprecated")     \
 | 
| +    "On strong object %, redefining writable, non-configurable property '%' "  \
 | 
| +    "to be non-writable is deprecated")                                        \
 | 
|    T(SymbolKeyFor, "% is not a symbol")                                         \
 | 
|    T(SymbolToPrimitive,                                                         \
 | 
|      "Cannot convert a Symbol wrapper object to a primitive value")             \
 | 
| 
 |