Changeset 34659 in webkit for trunk/JavaScriptCore/kjs/string_object.h
- Timestamp:
- Jun 19, 2008, 10:29:29 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/string_object.h
r34587 r34659 32 32 class StringObject : public JSWrapperObject { 33 33 public: 34 StringObject( JSObject* prototype);35 StringObject( JSObject* prototype, const UString&);34 StringObject(ExecState*, JSObject* prototype); 35 StringObject(ExecState*, JSObject* prototype, const UString&); 36 36 37 37 static StringObject* create(ExecState*, JSString*); … … 56 56 class StringObjectThatMasqueradesAsUndefined : public StringObject { 57 57 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) { } 60 60 virtual bool masqueradeAsUndefined() const { return true; } 61 61 virtual bool toBoolean(ExecState*) const { return false; }
Note:
See TracChangeset
for help on using the changeset viewer.