Ignore:
Timestamp:
Jan 24, 2012, 12:26:02 AM (13 years ago)
Author:
[email protected]
Message:

Unreviewed build fix for Qt LinuxSH4 build after r105698.

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::privateExecute):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp

    r104899 r105702  
    25802580            callFrame->uncheckedR(dst) = jsBoolean(baseObj->hasProperty(callFrame, i));
    25812581        else {
    2582             Identifier property(callFrame, propName.toString(callFrame));
     2582            Identifier property(callFrame, propName.toString(callFrame)->value(callFrame));
    25832583            CHECK_FOR_EXCEPTION();
    25842584            callFrame->uncheckedR(dst) = jsBoolean(baseObj->hasProperty(callFrame, property));
     
    34873487        }
    34883488        {
    3489             Identifier propertyName(callFrame, subscript.toString(callFrame));
     3489            Identifier propertyName(callFrame, subscript.toString(callFrame)->value(callFrame));
    34903490            result = baseValue.get(callFrame, propertyName);
    34913491        }
     
    35623562                result = baseValue.get(callFrame, i);
    35633563        } else {
    3564             Identifier property(callFrame, subscript.toString(callFrame));
     3564            Identifier property(callFrame, subscript.toString(callFrame)->value(callFrame));
    35653565            result = baseValue.get(callFrame, property);
    35663566        }
     
    36093609                baseValue.put(callFrame, i, callFrame->r(value).jsValue());
    36103610        } else {
    3611             Identifier property(callFrame, subscript.toString(callFrame));
     3611            Identifier property(callFrame, subscript.toString(callFrame)->value(callFrame));
    36123612            if (!globalData->exception) { // Don't put to an object if toString threw an exception.
    36133613                PutPropertySlot slot(codeBlock->isStrictMode());
     
    36413641        else {
    36423642            CHECK_FOR_EXCEPTION();
    3643             Identifier property(callFrame, subscript.toString(callFrame));
     3643            Identifier property(callFrame, subscript.toString(callFrame)->value(callFrame));
    36443644            CHECK_FOR_EXCEPTION();
    36453645            result = baseObj->methodTable()->deleteProperty(baseObj, callFrame, property);
     
    49484948           message string. The result is thrown.
    49494949        */
    4950         UString message = callFrame->r(vPC[1].u.operand).jsValue().toString(callFrame);
     4950        UString message = callFrame->r(vPC[1].u.operand).jsValue().toString(callFrame)->value(callFrame);
    49514951        exceptionValue = JSValue(createReferenceError(callFrame, message));
    49524952        goto vm_throw;
Note: See TracChangeset for help on using the changeset viewer.