Changeset 3015 in webkit for trunk/JavaScriptCore/kjs


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

Revert stuff I committed by mistake.

Location:
trunk/JavaScriptCore/kjs
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/array_instance.h

    r3013 r3015  
    4141    virtual bool deleteProperty(ExecState *exec, const Identifier &propertyName);
    4242    virtual bool deleteProperty(ExecState *exec, unsigned propertyName);
    43     virtual ReferenceList propList(ExecState *exec, bool recursive);
    4443
    4544    virtual void mark();
  • 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)
  • trunk/JavaScriptCore/kjs/array_object.h

    r3013 r3015  
    6060    virtual bool implementsCall() const;
    6161    virtual Value call(ExecState *exec, Object &thisObj, const List &args);
     62
    6263  };
    6364
  • trunk/JavaScriptCore/kjs/object.h

    r3013 r3015  
    573573    void setScope(const ScopeChain &s) { _scope = s; }
    574574
    575     virtual ReferenceList propList(ExecState *exec, bool recursive = true);
     575    ReferenceList propList(ExecState *exec, bool recursive = true);
    576576
    577577    Value internalValue() const;
Note: See TracChangeset for help on using the changeset viewer.