Index: src/messages.h |
diff --git a/src/messages.h b/src/messages.h |
index dc587f47e41cbd9646056dca86ff6e7182172604..83413e8be71590dfa3622bb9cc36c9172411cd60 100644 |
--- a/src/messages.h |
+++ b/src/messages.h |
@@ -116,6 +116,8 @@ |
"Class extends value % is not a function or null") \ |
T(FirstArgumentNotRegExp, \ |
"First argument to % must not be a regular expression") \ |
+ T(FlagsGetterNonObject, \ |
+ "RegExp.prototype.flags getter called on non-object %") \ |
T(FunctionBind, "Bind must be called on a function") \ |
T(GeneratorRunning, "Generator is already running") \ |
T(IllegalInvocation, "Illegal invocation") \ |
@@ -200,8 +202,6 @@ |
T(ReduceNoInitial, "Reduce of empty array with no initial value") \ |
T(RegExpFlags, \ |
"Cannot supply flags when constructing one RegExp from another") \ |
- T(RegExpNonObject, "% getter called on non-object %") \ |
- T(RegExpNonRegExp, "% is not an RegExp object") \ |
T(ReinitializeIntl, "Trying to re-initialize % object.") \ |
T(ResolvedOptionsCalledOnNonObject, \ |
"resolvedOptions method called on a non-object or on a object that is " \ |