Changeset 183754 in webkit for trunk/Source/JavaScriptCore/API/JSCallbackObjectFunctions.h
- Timestamp:
- May 4, 2015, 11:47:33 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/API/JSCallbackObjectFunctions.h
r183005 r183754 271 271 if (OpaqueJSClassStaticFunctionsTable* staticFunctions = jsClass->staticFunctions(exec)) { 272 272 if (StaticFunctionEntry* entry = staticFunctions->get(name)) { 273 PropertySlot getSlot(thisObject); 274 if (Parent::getOwnPropertySlot(thisObject, exec, propertyName, getSlot)) 275 return Parent::put(thisObject, exec, propertyName, value, slot); 273 276 if (entry->attributes & kJSPropertyAttributeReadOnly) 274 277 return;
Note:
See TracChangeset
for help on using the changeset viewer.