Changeset 9889 in webkit for trunk/JavaScriptCore/kjs/function.h
- Timestamp:
- Jul 25, 2005, 3:17:20 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/function.h
r9768 r9889 42 42 virtual ~FunctionImp(); 43 43 44 virtual Value get(ExecState *exec, const Identifier &propertyName) const;44 virtual bool getOwnProperty(ExecState *exec, const Identifier& propertyName, Value& result) const; 45 45 virtual void put(ExecState *exec, const Identifier &propertyName, const Value &value, int attr = None); 46 46 virtual bool hasOwnProperty(ExecState *exec, const Identifier &propertyName) const; … … 109 109 ArgumentsImp(ExecState *exec, FunctionImp *func, const List &args, ActivationImp *act); 110 110 virtual void mark(); 111 virtual Value get(ExecState *exec, const Identifier &propertyName) const;111 virtual bool getOwnProperty(ExecState *exec, const Identifier& propertyName, Value& result) const; 112 112 virtual void put(ExecState *exec, const Identifier &propertyName, 113 113 const Value &value, int attr = None); … … 125 125 ActivationImp(FunctionImp *function, const List &arguments); 126 126 127 virtual Value get(ExecState *exec, const Identifier &propertyName) const;127 virtual bool getOwnProperty(ExecState *exec, const Identifier& propertyName, Value& result) const; 128 128 virtual bool hasOwnProperty(ExecState *exec, const Identifier &propertyName) const; 129 129 virtual bool deleteProperty(ExecState *exec, const Identifier &propertyName);
Note:
See TracChangeset
for help on using the changeset viewer.