Changeset 10076 in webkit for trunk/JavaScriptCore/bindings/runtime_array.h
- Timestamp:
- Aug 6, 2005, 11:17:49 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bindings/runtime_array.h
r9889 r10076 38 38 ~RuntimeArrayImp(); 39 39 40 virtual bool getOwnProperty (ExecState *exec, const Identifier& propertyName, Value& result) const;41 virtual bool getOwnProperty (ExecState *exec, unsigned index, Value& result) const;40 virtual bool getOwnPropertySlot(ExecState *, const Identifier&, PropertySlot&); 41 virtual bool getOwnPropertySlot(ExecState *, unsigned, PropertySlot&); 42 42 virtual void put(ExecState *exec, const Identifier &propertyName, const Value &value, int attr = None); 43 43 virtual void put(ExecState *exec, unsigned propertyName, const Value &value, int attr = None); 44 44 45 virtual bool hasOwnProperty(ExecState *exec, const Identifier &propertyName) const;46 virtual bool hasOwnProperty(ExecState *exec, unsigned propertyName) const;47 45 virtual bool deleteProperty(ExecState *exec, const Identifier &propertyName); 48 46 virtual bool deleteProperty(ExecState *exec, unsigned propertyName); … … 57 55 58 56 private: 57 static Value lengthGetter(ExecState *, const Identifier&, const PropertySlot&); 58 static Value indexGetter(ExecState *, const Identifier&, const PropertySlot&); 59 59 60 Bindings::Array *_array; 60 61 };
Note:
See TracChangeset
for help on using the changeset viewer.