Changeset 154459 in webkit for trunk/Source/JavaScriptCore/runtime/JSObject.cpp
- Timestamp:
- Aug 22, 2013, 1:35:09 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSObject.cpp
r154426 r154459 1126 1126 break; 1127 1127 } 1128 }1129 1130 void JSObject::putDirectVirtual(JSObject* object, ExecState* exec, PropertyName propertyName, JSValue value, unsigned attributes)1131 {1132 ASSERT(!value.isGetterSetter() && !(attributes & Accessor));1133 PutPropertySlot slot;1134 object->putDirectInternal<PutModeDefineOwnProperty>(exec->vm(), propertyName, value, attributes, slot, getCallableObject(value));1135 1128 } 1136 1129
Note:
See TracChangeset
for help on using the changeset viewer.