Ignore:
Timestamp:
Oct 1, 2009, 4:49:28 PM (16 years ago)
Author:
[email protected]
Message:

Roll out r49004 since it broke the debug build.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/runtime/JSValue.cpp

    r49004 r49005  
    123123    else if (isNull())
    124124        snprintf(description, size, "Null");
    125     else if (isUndefined())
     125    else {
     126        ASSERT(isUndefined());
    126127        snprintf(description, size, "Undefined");
    127     else if (tag() == EmptyValueTag)
    128         snprintf(description, size, "<JSValue()>");
    129     else {
    130         ASSERT(tag() == DeletedValueTag);
    131         snprintf(description, size, "<HashTableDeletedValue>");
    132128    }
    133129
Note: See TracChangeset for help on using the changeset viewer.