Changeset 9889 in webkit for trunk/JavaScriptCore/kjs/string_object.h
- Timestamp:
- Jul 25, 2005, 3:17:20 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/string_object.h
r9768 r9889 33 33 StringInstanceImp(ObjectImp *proto, const UString &string); 34 34 35 virtual Value get(ExecState *exec, const Identifier &propertyName) const;35 virtual bool getOwnProperty(ExecState *exec, const Identifier& propertyName, Value& result) const; 36 36 virtual void put(ExecState *exec, const Identifier &propertyName, const Value &value, int attr = None); 37 37 virtual bool hasOwnProperty(ExecState *exec, const Identifier &propertyName) const; … … 52 52 StringPrototypeImp(ExecState *exec, 53 53 ObjectPrototypeImp *objProto); 54 Value get(ExecState *exec, const Identifier &p) const;54 virtual bool getOwnProperty(ExecState *exec, const Identifier& propertyName, Value& result) 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.