Ignore:
Timestamp:
Jul 30, 2009, 1:57:44 PM (16 years ago)
Author:
[email protected]
Message:

Merged nitro-extreme branch into trunk.

File:
1 edited

Legend:

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

    r46528 r46598  
    2424#define JSString_h
    2525
     26#include "CallFrame.h"
    2627#include "CommonIdentifiers.h"
    27 #include "CallFrame.h"
    2828#include "Identifier.h"
    2929#include "JSNumberCell.h"
     
    209209    inline JSString* JSValue::toThisJSString(ExecState* exec)
    210210    {
    211         return JSImmediate::isImmediate(asValue()) ? jsString(exec, JSImmediate::toString(asValue())) : asCell()->toThisJSString(exec);
     211        return isCell() ? asCell()->toThisJSString(exec) : jsString(exec, toString(exec));
    212212    }
    213213
Note: See TracChangeset for help on using the changeset viewer.