Ignore:
Timestamp:
May 12, 2008, 12:12:31 AM (17 years ago)
Author:
[email protected]
Message:

Roll out recent threading changes (r32807, r32810, r32819, r32822) to simplify
SquirrelFish merging.

File:
1 edited

Legend:

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

    r32807 r33038  
    3232  class StringInstance : public JSWrapperObject {
    3333  public:
    34     StringInstance(ExecState*, JSObject* proto);
     34    StringInstance(JSObject *proto);
    3535    StringInstance(JSObject *proto, StringImp*);
    36     StringInstance(ExecState*, JSObject* proto, const UString&);
     36    StringInstance(JSObject *proto, const UString&);
    3737
    3838    virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
     
    5858  class StringInstanceThatMasqueradesAsUndefined : public StringInstance {
    5959  public:
    60       StringInstanceThatMasqueradesAsUndefined(ExecState* exec, JSObject* proto, const UString& string)
    61           : StringInstance(exec, proto, string) { }
     60      StringInstanceThatMasqueradesAsUndefined(JSObject* proto, const UString& string)
     61          : StringInstance(proto, string) { }
    6262      virtual bool masqueradeAsUndefined() const { return true; }
    6363      virtual bool toBoolean(ExecState*) const { return false; }
Note: See TracChangeset for help on using the changeset viewer.