Changeset 77151 in webkit for trunk/Source/JavaScriptCore/runtime/Lookup.h
- Timestamp:
- Jan 31, 2011, 12:07:21 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Lookup.h
r77113 r77151 313 313 if (entry->attributes() & Function) { // function: put as override property 314 314 if (LIKELY(value.isCell())) 315 thisObj->putDirectFunction( propertyName, value.asCell());315 thisObj->putDirectFunction(exec->globalData(), propertyName, value.asCell()); 316 316 else 317 thisObj->putDirect( propertyName, value);317 thisObj->putDirect(exec->globalData(), propertyName, value); 318 318 } else if (!(entry->attributes() & ReadOnly)) 319 319 entry->propertyPutter()(exec, thisObj, value);
Note:
See TracChangeset
for help on using the changeset viewer.