Ignore:
Timestamp:
Mar 16, 2011, 9:46:05 PM (14 years ago)
Author:
[email protected]
Message:

Fix the interpreter build.

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::resolve):
(JSC::Interpreter::resolveSkip):
(JSC::Interpreter::resolveGlobal):
(JSC::Interpreter::resolveGlobalDynamic):
(JSC::Interpreter::resolveBaseAndProperty):
(JSC::Interpreter::privateExecute):
Remove .get()s.

File:
1 edited

Legend:

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

    r80691 r81320  
    107107        if (o->getPropertySlot(callFrame, ident, slot)) {
    108108            JSValue result = slot.getValue(callFrame, ident);
    109             exceptionValue = callFrame->globalData().exception.get();
     109            exceptionValue = callFrame->globalData().exception;
    110110            if (exceptionValue)
    111111                return false;
     
    146146        if (o->getPropertySlot(callFrame, ident, slot)) {
    147147            JSValue result = slot.getValue(callFrame, ident);
    148             exceptionValue = callFrame->globalData().exception.get();
     148            exceptionValue = callFrame->globalData().exception;
    149149            if (exceptionValue)
    150150                return false;
     
    187187        }
    188188
    189         exceptionValue = callFrame->globalData().exception.get();
     189        exceptionValue = callFrame->globalData().exception;
    190190        if (exceptionValue)
    191191            return false;
     
    227227                if (o->getPropertySlot(callFrame, ident, slot)) {
    228228                    JSValue result = slot.getValue(callFrame, ident);
    229                     exceptionValue = callFrame->globalData().exception.get();
     229                    exceptionValue = callFrame->globalData().exception;
    230230                    if (exceptionValue)
    231231                        return false;
     
    266266        }
    267267       
    268         exceptionValue = callFrame->globalData().exception.get();
     268        exceptionValue = callFrame->globalData().exception;
    269269        if (exceptionValue)
    270270            return false;
     
    314314        if (base->getPropertySlot(callFrame, ident, slot)) {
    315315            JSValue result = slot.getValue(callFrame, ident);
    316             exceptionValue = callFrame->globalData().exception.get();
     316            exceptionValue = callFrame->globalData().exception;
    317317            if (exceptionValue)
    318318                return false;
     
    14681468#define CHECK_FOR_EXCEPTION() \
    14691469    do { \
    1470         if (UNLIKELY(globalData->exception.get() != JSValue())) { \
    1471             exceptionValue = globalData->exception.get(); \
     1470        if (UNLIKELY(globalData->exception != JSValue())) { \
     1471            exceptionValue = globalData->exception; \
    14721472            goto vm_throw; \
    14731473        } \
     
    38363836        if (thisValue == globalObject && funcVal == globalObject->evalFunction()) {
    38373837            JSValue result = callEval(callFrame, registerFile, argv, argCount, registerOffset);
    3838             if ((exceptionValue = globalData->exception.get()))
     3838            if ((exceptionValue = globalData->exception))
    38393839                goto vm_throw;
    38403840            functionReturnValue = result;
Note: See TracChangeset for help on using the changeset viewer.