Index: src/messages.h |
diff --git a/src/messages.h b/src/messages.h |
index 297b1db94be1cfb68ca7171ded7ea37277fe87fd..bc2a1036d7b0a6bd9bdcc9a3caedd3175197b157 100644 |
--- a/src/messages.h |
+++ b/src/messages.h |
@@ -595,9 +595,11 @@ class ErrorUtils : public AllStatic { |
"In strict mode code, functions can only be declared at top level or " \ |
"inside a block.") \ |
T(StrictOctalLiteral, "Octal literals are not allowed in strict mode.") \ |
+ T(StrictOctalEscape, \ |
+ "Octal escape sequences are not allowed in strict mode.") \ |
T(StrictWith, "Strict mode code may not include a with statement") \ |
T(TemplateOctalLiteral, \ |
- "Octal literals are not allowed in template strings.") \ |
+ "Octal escape sequences are not allowed in template strings.") \ |
T(ThisFormalParameter, "'this' is not a valid formal parameter name") \ |
T(AwaitBindingIdentifier, \ |
"'await' is not a valid identifier name in an async function") \ |