Ignore:
Timestamp:
Dec 12, 2002, 1:20:02 AM (22 years ago)
Author:
mjs
Message:

Revert stuff I committed by mistake.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/array_object.cpp

    r3013 r3015  
    196196  return ObjectImp::deleteProperty(exec, Identifier::from(index));
    197197}
    198 
    199 ReferenceList ArrayInstanceImp::propList(ExecState *exec, bool recursive)
    200 {
    201   ReferenceList properties = ObjectImp::propList(exec,recursive);
    202   for (unsigned i = 0; i < storageLength; ++i) {
    203     if (storage[i]) {
    204       properties.append(Reference(this, Identifier::from(i);
    205     }
    206   }
    207   return properties;
    208 }
    209 
    210198
    211199void ArrayInstanceImp::resizeStorage(unsigned newLength)
Note: See TracChangeset for help on using the changeset viewer.