Changeset 2760 in webkit for trunk/JavaScriptCore/kjs/array_object.h
- Timestamp:
- Nov 19, 2002, 2:02:26 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/array_object.h
r2738 r2760 34 34 ~ArrayInstanceImp(); 35 35 36 virtual Value get(ExecState *exec, const UString&propertyName) const;36 virtual Value get(ExecState *exec, const Identifier &propertyName) const; 37 37 virtual Value get(ExecState *exec, unsigned propertyName) const; 38 virtual void put(ExecState *exec, const UString&propertyName, const Value &value, int attr = None);38 virtual void put(ExecState *exec, const Identifier &propertyName, const Value &value, int attr = None); 39 39 virtual void put(ExecState *exec, unsigned propertyName, const Value &value, int attr = None); 40 virtual bool hasProperty(ExecState *exec, const UString&propertyName) const;40 virtual bool hasProperty(ExecState *exec, const Identifier &propertyName) const; 41 41 virtual bool hasProperty(ExecState *exec, unsigned propertyName) const; 42 virtual bool deleteProperty(ExecState *exec, const UString&propertyName);42 virtual bool deleteProperty(ExecState *exec, const Identifier &propertyName); 43 43 virtual bool deleteProperty(ExecState *exec, unsigned propertyName); 44 44 … … 67 67 ArrayPrototypeImp(ExecState *exec, 68 68 ObjectPrototypeImp *objProto); 69 Value get(ExecState *exec, const UString&p) const;69 Value get(ExecState *exec, const Identifier &p) const; 70 70 virtual const ClassInfo *classInfo() const { return &info; } 71 71 static const ClassInfo info;
Note:
See TracChangeset
for help on using the changeset viewer.