Changeset 81320 in webkit for trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
- Timestamp:
- Mar 16, 2011, 9:46:05 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
r80691 r81320 107 107 if (o->getPropertySlot(callFrame, ident, slot)) { 108 108 JSValue result = slot.getValue(callFrame, ident); 109 exceptionValue = callFrame->globalData().exception .get();109 exceptionValue = callFrame->globalData().exception; 110 110 if (exceptionValue) 111 111 return false; … … 146 146 if (o->getPropertySlot(callFrame, ident, slot)) { 147 147 JSValue result = slot.getValue(callFrame, ident); 148 exceptionValue = callFrame->globalData().exception .get();148 exceptionValue = callFrame->globalData().exception; 149 149 if (exceptionValue) 150 150 return false; … … 187 187 } 188 188 189 exceptionValue = callFrame->globalData().exception .get();189 exceptionValue = callFrame->globalData().exception; 190 190 if (exceptionValue) 191 191 return false; … … 227 227 if (o->getPropertySlot(callFrame, ident, slot)) { 228 228 JSValue result = slot.getValue(callFrame, ident); 229 exceptionValue = callFrame->globalData().exception .get();229 exceptionValue = callFrame->globalData().exception; 230 230 if (exceptionValue) 231 231 return false; … … 266 266 } 267 267 268 exceptionValue = callFrame->globalData().exception .get();268 exceptionValue = callFrame->globalData().exception; 269 269 if (exceptionValue) 270 270 return false; … … 314 314 if (base->getPropertySlot(callFrame, ident, slot)) { 315 315 JSValue result = slot.getValue(callFrame, ident); 316 exceptionValue = callFrame->globalData().exception .get();316 exceptionValue = callFrame->globalData().exception; 317 317 if (exceptionValue) 318 318 return false; … … 1468 1468 #define CHECK_FOR_EXCEPTION() \ 1469 1469 do { \ 1470 if (UNLIKELY(globalData->exception .get()!= JSValue())) { \1471 exceptionValue = globalData->exception .get(); \1470 if (UNLIKELY(globalData->exception != JSValue())) { \ 1471 exceptionValue = globalData->exception; \ 1472 1472 goto vm_throw; \ 1473 1473 } \ … … 3836 3836 if (thisValue == globalObject && funcVal == globalObject->evalFunction()) { 3837 3837 JSValue result = callEval(callFrame, registerFile, argv, argCount, registerOffset); 3838 if ((exceptionValue = globalData->exception .get()))3838 if ((exceptionValue = globalData->exception)) 3839 3839 goto vm_throw; 3840 3840 functionReturnValue = result;
Note:
See TracChangeset
for help on using the changeset viewer.