Changeset 44076 in webkit for trunk/JavaScriptCore/runtime/JSActivation.cpp
- Timestamp:
- May 22, 2009, 6:48:32 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSActivation.cpp
r43603 r44076 119 119 120 120 // FIXME: Make this function honor ReadOnly (const) and DontEnum 121 void JSActivation::putWithAttributes(ExecState* , const Identifier& propertyName, JSValue value, unsigned attributes)121 void JSActivation::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes) 122 122 { 123 123 ASSERT(!Heap::heap(value) || Heap::heap(value) == Heap::heap(this)); … … 131 131 ASSERT(!hasGetterSetterProperties()); 132 132 PutPropertySlot slot; 133 putDirect(propertyName, value, attributes, true, slot);133 JSObject::putWithAttributes(exec, propertyName, value, attributes, true, slot); 134 134 } 135 135
Note:
See TracChangeset
for help on using the changeset viewer.