Changeset 153673 in webkit for trunk/Source/JavaScriptCore/runtime/Arguments.cpp
- Timestamp:
- Aug 2, 2013, 3:30:48 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Arguments.cpp
r153532 r153673 288 288 RELEASE_ASSERT(i < PropertyName::NotAnIndex); 289 289 // If the property is not yet present on the object, and is not yet marked as deleted, then add it now. 290 PropertySlot slot ;290 PropertySlot slot(thisObject); 291 291 if (!thisObject->isDeletedArgument(i) && !JSObject::getOwnPropertySlot(thisObject, exec, propertyName, slot)) { 292 292 JSValue value = thisObject->tryGetArgument(i);
Note:
See TracChangeset
for help on using the changeset viewer.