Changeset 33038 in webkit for trunk/JavaScriptCore/kjs/string_object.h
- Timestamp:
- May 12, 2008, 12:12:31 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/string_object.h
r32807 r33038 32 32 class StringInstance : public JSWrapperObject { 33 33 public: 34 StringInstance( ExecState*, JSObject*proto);34 StringInstance(JSObject *proto); 35 35 StringInstance(JSObject *proto, StringImp*); 36 StringInstance( ExecState*, JSObject*proto, const UString&);36 StringInstance(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( ExecState* exec,JSObject* proto, const UString& string)61 : StringInstance( exec,proto, string) { }60 StringInstanceThatMasqueradesAsUndefined(JSObject* proto, const UString& string) 61 : StringInstance(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.