Changeset 32807 in webkit for trunk/JavaScriptCore/kjs/string_object.h
- Timestamp:
- May 2, 2008, 3:07:53 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/string_object.h
r30534 r32807 32 32 class StringInstance : public JSWrapperObject { 33 33 public: 34 StringInstance( JSObject *proto);34 StringInstance(ExecState*, JSObject* proto); 35 35 StringInstance(JSObject *proto, StringImp*); 36 StringInstance( JSObject *proto, const UString&);36 StringInstance(ExecState*, JSObject* proto, const UString&); 37 37 38 38 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&); … … 58 58 class StringInstanceThatMasqueradesAsUndefined : public StringInstance { 59 59 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) { } 62 62 virtual bool masqueradeAsUndefined() const { return true; } 63 63 virtual bool toBoolean(ExecState*) const { return false; }
Note:
See TracChangeset
for help on using the changeset viewer.