Ignore:
Timestamp:
May 2, 2008, 3:07:53 AM (17 years ago)
Author:
[email protected]
Message:

Reviewed by Geoffrey Garen.

https://bugs.webkit.org/show_bug.cgi?id=18826
Make JavaScript heap per-thread

File:
1 edited

Legend:

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

    r30534 r32807  
    3232  class StringInstance : public JSWrapperObject {
    3333  public:
    34     StringInstance(JSObject *proto);
     34    StringInstance(ExecState*, JSObject* proto);
    3535    StringInstance(JSObject *proto, StringImp*);
    36     StringInstance(JSObject *proto, const UString&);
     36    StringInstance(ExecState*, JSObject* proto, const UString&);
    3737
    3838    virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
     
    5858  class StringInstanceThatMasqueradesAsUndefined : public StringInstance {
    5959  public:
    60       StringInstanceThatMasqueradesAsUndefined(JSObject* proto, const UString& string)
    61           : StringInstance(proto, string) { }
     60      StringInstanceThatMasqueradesAsUndefined(ExecState* exec, JSObject* proto, const UString& string)
     61          : StringInstance(exec, 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.