Changeset 31746 in webkit for trunk/JavaScriptCore/kjs/function_object.cpp
- Timestamp:
- Apr 8, 2008, 7:17:49 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/function_object.cpp
r31208 r31746 87 87 JSObject* applyThis; 88 88 if (thisArg->isUndefinedOrNull()) 89 applyThis = exec-> dynamicGlobalObject();89 applyThis = exec->globalThisValue(); 90 90 else 91 91 applyThis = thisArg->toObject(exec); … … 117 117 JSObject* callThis; 118 118 if (thisArg->isUndefinedOrNull()) 119 callThis = exec-> dynamicGlobalObject();119 callThis = exec->globalThisValue(); 120 120 else 121 121 callThis = thisArg->toObject(exec);
Note:
See TracChangeset
for help on using the changeset viewer.