Index: src/messages.js |
diff --git a/src/messages.js b/src/messages.js |
index 634771524f31b3453ef0678a259e1a4672a11a3a..50493bf9ade71bb91a0270e1910ae54c9b0d54a2 100644 |
--- a/src/messages.js |
+++ b/src/messages.js |
@@ -236,6 +236,9 @@ function FormatMessage(message) { |
strict_duplicate_property: "Duplicate data property in object literal not allowed in strict mode", |
accessor_data_property: "Object literal may not have data and accessor property with the same name", |
accessor_get_set: "Object literal may not have multiple get/set accessors with the same name", |
+ strict_lhs_eval_assignment: "Assignment to eval or arguments is not allowed in strict mode", |
+ strict_lhs_postfix: "Operand of postfix expression may not be eval or arguments in strict mode", |
Lasse Reichstein
2011/01/26 08:03:59
Unless this is what Webkit uses as error message (
Martin Maly
2011/01/26 19:19:33
Webkit only says "parse error". Updated the errors
|
+ strict_lhs_prefix: "Operand of prefix expression may not be eval or arguments in strict mode", |
}; |
} |
var format = kMessages[message.type]; |