Changeset 28110 in webkit for trunk/JavaScriptCore/kjs/function.h


Ignore:
Timestamp:
Nov 28, 2007, 5:12:03 AM (18 years ago)
Author:
[email protected]
Message:

Roll out r28106 and r28108. These introduced a frequent assertion failure on page load and broke all non-Mac builds.

File:
1 edited

Legend:

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

    r28106 r28110  
    9696    const ScopeChain& scope() const { return _scope; }
    9797
    98     virtual void markChildren(MarkStack&);
     98    virtual void mark();
    9999
    100100  private:
     
    125125  public:
    126126    Arguments(ExecState*, FunctionImp* func, const List& args, ActivationImp* act);
    127     virtual void markChildren(MarkStack&);
     127    virtual void mark();
    128128    virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
    129129    virtual void put(ExecState*, const Identifier& propertyName, JSValue* value, int attr = None);
     
    165165    static const ClassInfo info;
    166166
    167     virtual void markChildren(MarkStack&);
     167    virtual void mark();
    168168
    169169    bool isActivation() { return true; }
Note: See TracChangeset for help on using the changeset viewer.