Changeset 2783 in webkit for trunk/JavaScriptCore/kjs/function.h
- Timestamp:
- Nov 20, 2002, 1:12:14 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/function.h
r2779 r2783 25 25 26 26 #include "internal.h" 27 #include "array_instance.h" 27 28 28 29 namespace KJS { … … 91 92 92 93 93 class ArgumentsImp : public ObjectImp {94 class ArgumentsImp : public ArrayInstanceImp { 94 95 public: 95 96 ArgumentsImp(ExecState *exec, FunctionImp *func, const List &args); … … 103 104 ActivationImp(ExecState *exec, FunctionImp *f, const List &args); 104 105 105 Object argumentsObject() { return Object(arguments); }106 107 106 virtual const ClassInfo *classInfo() const { return &info; } 108 107 static const ClassInfo info; … … 112 111 private: 113 112 FunctionImp *_function; 114 ObjectImp* arguments; 113 List _arguments; 114 ObjectImp *_argumentsObject; 115 115 }; 116 116
Note:
See TracChangeset
for help on using the changeset viewer.