Changeset 2883 in webkit for trunk/JavaScriptCore/kjs/function.h
- Timestamp:
- Nov 26, 2002, 3:52:00 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/function.h
r2821 r2883 101 101 class ActivationImp : public ObjectImp { 102 102 public: 103 ActivationImp( ContextImp *);103 ActivationImp(FunctionImp *function, const List &arguments); 104 104 105 105 virtual Value get(ExecState *exec, const Identifier &propertyName) const; … … 116 116 void createArgumentsObject(ExecState *exec) const; 117 117 118 const ContextImp *_context; 118 FunctionImp *_function; 119 List _arguments; 119 120 mutable ArgumentsImp *_argumentsObject; 120 121 };
Note:
See TracChangeset
for help on using the changeset viewer.