Bug 562446 - ES5: Array.prototype.toString and Array.prototype.toLocaleString should be generic. r=igor

This commit is contained in:
Jeff Walden
2010-07-15 12:33:33 -05:00
parent 6bd406943e
commit 6de1a8bb2b
10 changed files with 136 additions and 32 deletions

View File

@@ -149,6 +149,7 @@ const char *const js_common_atom_names[] = {
js_index_str, /* indexAtom */
js_input_str, /* inputAtom */
js_iterator_str, /* iteratorAtom */
js_join_str, /* joinAtom */
js_lastIndex_str, /* lastIndexAtom */
js_length_str, /* lengthAtom */
js_lineNumber_str, /* lineNumberAtom */
@@ -243,6 +244,7 @@ const char js_ignoreCase_str[] = "ignoreCase";
const char js_index_str[] = "index";
const char js_input_str[] = "input";
const char js_iterator_str[] = "__iterator__";
const char js_join_str[] = "join";
const char js_lastIndex_str[] = "lastIndex";
const char js_length_str[] = "length";
const char js_lineNumber_str[] = "lineNumber";