Changeset 36726 in webkit for trunk/JavaScriptCore/kjs/StringObject.h
- Timestamp:
- Sep 20, 2008, 7:29:12 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/StringObject.h
r36475 r36726 29 29 class StringObject : public JSWrapperObject { 30 30 public: 31 StringObject(ExecState*, JSObject* prototype);32 StringObject(ExecState*, JSObject* prototype, const UString&);31 StringObject(ExecState*, PassRefPtr<StructureID>); 32 StringObject(ExecState*, PassRefPtr<StructureID>, const UString&); 33 33 34 34 static StringObject* create(ExecState*, JSString*); … … 47 47 48 48 protected: 49 StringObject( JSObject* prototype, JSString*);49 StringObject(PassRefPtr<StructureID>, JSString*); 50 50 51 51 private:
Note:
See TracChangeset
for help on using the changeset viewer.