Changeset 10076 in webkit for trunk/JavaScriptCore/bindings/runtime_object.h
- Timestamp:
- Aug 6, 2005, 11:17:49 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bindings/runtime_object.h
r9889 r10076 42 42 const ClassInfo *classInfo() const { return &info; } 43 43 44 virtual bool getOwnProperty (ExecState *exec, const Identifier& propertyName, Value& result) const;44 virtual bool getOwnPropertySlot(ExecState *, const Identifier&, PropertySlot&); 45 45 46 46 virtual void put(ExecState *exec, const Identifier &propertyName, … … 48 48 49 49 virtual bool canPut(ExecState *exec, const Identifier &propertyName) const; 50 51 virtual bool hasOwnProperty(ExecState *exec,52 const Identifier &propertyName) const;53 54 50 55 51 virtual bool deleteProperty(ExecState *exec, … … 67 63 68 64 private: 65 static Value fallbackObjectGetter(ExecState *, const Identifier&, const PropertySlot&); 66 static Value fieldGetter(ExecState *, const Identifier&, const PropertySlot&); 67 static Value methodGetter(ExecState *, const Identifier&, const PropertySlot&); 68 69 69 Bindings::Instance *instance; 70 70 bool ownsInstance;
Note:
See TracChangeset
for help on using the changeset viewer.