Changeset 2760 in webkit for trunk/JavaScriptCore/kjs/string_object.h
- Timestamp:
- Nov 19, 2002, 2:02:26 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/string_object.h
r2749 r2760 33 33 StringInstanceImp(const Object &proto, const UString &string); 34 34 35 virtual Value get(ExecState *exec, const UString&propertyName) const;36 virtual void put(ExecState *exec, const UString&propertyName, const Value &value, int attr = None);37 virtual bool hasProperty(ExecState *exec, const UString&propertyName) const;38 virtual bool deleteProperty(ExecState *exec, const UString&propertyName);35 virtual Value get(ExecState *exec, const Identifier &propertyName) const; 36 virtual void put(ExecState *exec, const Identifier &propertyName, const Value &value, int attr = None); 37 virtual bool hasProperty(ExecState *exec, const Identifier &propertyName) const; 38 virtual bool deleteProperty(ExecState *exec, const Identifier &propertyName); 39 39 40 40 virtual const ClassInfo *classInfo() const { return &info; } … … 52 52 StringPrototypeImp(ExecState *exec, 53 53 ObjectPrototypeImp *objProto); 54 Value get(ExecState *exec, const UString&p) const;54 Value get(ExecState *exec, const Identifier &p) const; 55 55 virtual const ClassInfo *classInfo() const { return &info; } 56 56 static const ClassInfo info;
Note:
See TracChangeset
for help on using the changeset viewer.