Ignore:
Timestamp:
Jun 19, 2008, 10:29:29 AM (17 years ago)
Author:
[email protected]
Message:

Reviewed by Darin.

Prepare JavaScript heap for being per-thread.

File:
1 edited

Legend:

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

    r34587 r34659  
    3232  class StringObject : public JSWrapperObject {
    3333  public:
    34     StringObject(JSObject* prototype);
    35     StringObject(JSObject* prototype, const UString&);
     34    StringObject(ExecState*, JSObject* prototype);
     35    StringObject(ExecState*, JSObject* prototype, const UString&);
    3636
    3737    static StringObject* create(ExecState*, JSString*);
     
    5656  class StringObjectThatMasqueradesAsUndefined : public StringObject {
    5757  public:
    58       StringObjectThatMasqueradesAsUndefined(JSObject* proto, const UString& string)
    59           : StringObject(proto, string) { }
     58      StringObjectThatMasqueradesAsUndefined(ExecState* exec, JSObject* proto, const UString& string)
     59          : StringObject(exec, proto, string) { }
    6060      virtual bool masqueradeAsUndefined() const { return true; }
    6161      virtual bool toBoolean(ExecState*) const { return false; }
Note: See TracChangeset for help on using the changeset viewer.