Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(480)

Unified Diff: src/messages.js

Issue 10453009: Fixed Array.prototype.reverse() behavior when array is frozen or array elements are not writable an… (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/array.js ('k') | test/mjsunit/sparse-array-reverse.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « src/array.js ('k') | test/mjsunit/sparse-array-reverse.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698