| Index: src/messages.js
|
| diff --git a/src/messages.js b/src/messages.js
|
| index 2a00ba84691fabb9952fc66669edb80571d72206..ebb7f1a59ba2a4cc9186b87da6c71936fc57f17a 100644
|
| --- a/src/messages.js
|
| +++ b/src/messages.js
|
| @@ -251,6 +251,8 @@ function FormatMessage(message) {
|
| "harmony_const_assign", ["Assignment to constant variable."],
|
| "invalid_module_path", ["Module does not export '", "%0", "', or export is not itself a module"],
|
| "module_type_error", ["Module '", "%0", "' used improperly"],
|
| + "called_on_read_only", ["%0", " called on read only"],
|
| + "cant_delete_non_configurable_property", ["Property ", "%0", " is non-configurable and can't be deleted"]
|
| ];
|
| var messages = { __proto__ : null };
|
| for (var i = 0; i < messagesDictionary.length; i += 2) {
|
|
|