Changeset 51724 in webkit for trunk/JavaScriptCore/runtime/StringObject.cpp
- Timestamp:
- Dec 4, 2009, 5:21:45 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/StringObject.cpp
r51671 r51724 80 80 if (propertyName == exec->propertyNames().length) 81 81 return false; 82 bool isStrictUInt32; 83 unsigned i = propertyName.toStrictUInt32(&isStrictUInt32); 84 if (isStrictUInt32 && internalValue()->canGetIndex(i)) 85 return false; 82 86 return JSObject::deleteProperty(exec, propertyName); 83 87 }
Note:
See TracChangeset
for help on using the changeset viewer.