Changeset 159528 in webkit for trunk/Source/JavaScriptCore/runtime/JSFunction.cpp
- Timestamp:
- Nov 19, 2013, 3:48:23 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSFunction.cpp
r159395 r159528 388 388 thisObject->methodTable()->getOwnPropertySlot(thisObject, exec, propertyName, slot); 389 389 thisObject->m_allocationProfile.clear(); 390 thisObject->m_allocationProfileWatchpoint. notifyWrite();390 thisObject->m_allocationProfileWatchpoint.fireAll(); 391 391 // Don't allow this to be cached, since a [[Put]] must clear m_allocationProfile. 392 392 PutPropertySlot dontCache; … … 435 435 thisObject->methodTable()->getOwnPropertySlot(thisObject, exec, propertyName, slot); 436 436 thisObject->m_allocationProfile.clear(); 437 thisObject->m_allocationProfileWatchpoint. notifyWrite();437 thisObject->m_allocationProfileWatchpoint.fireAll(); 438 438 return Base::defineOwnProperty(object, exec, propertyName, descriptor, throwException); 439 439 }
Note:
See TracChangeset
for help on using the changeset viewer.