Ignore:
Timestamp:
Jun 9, 2009, 5:37:01 PM (16 years ago)
Author:
[email protected]
Message:

Bug 26249: Support JSON.stringify
<https://bugs.webkit.org/show_bug.cgi?id=26249>

Reviewed by Sam Weinig.

Implement JSON.stringify. This patch handles all the semantics of the ES5
JSON.stringify function, including replacer functions and arrays and both
string and numeric gap arguments.

Currently uses a clamped recursive algorithm basically identical to the spec
description but with a few minor tweaks for performance and corrected semantics
discussed in the es-discuss mailing list.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/runtime/JSGlobalData.h

    r44522 r44550  
    8383        const HashTable* arrayTable;
    8484        const HashTable* dateTable;
     85        const HashTable* jsonTable;
    8586        const HashTable* mathTable;
    8687        const HashTable* numberTable;
Note: See TracChangeset for help on using the changeset viewer.