Changeset 13304 in webkit for trunk/JavaScriptCore/kjs/function.h
- Timestamp:
- Mar 15, 2006, 2:21:48 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/function.h
r13153 r13304 40 40 friend class ActivationImp; 41 41 public: 42 FunctionImp(ExecState *exec, const Identifier &n = Identifier::null());42 FunctionImp(ExecState* exec, const Identifier& n, FunctionBodyNode* b); 43 43 virtual ~FunctionImp(); 44 44 … … 59 59 virtual const ClassInfo *classInfo() const { return &info; } 60 60 static const ClassInfo info; 61 62 RefPtr<FunctionBodyNode> body; 63 61 64 protected: 62 65 OwnPtr<Parameter> param; … … 80 83 virtual Completion execute(ExecState *exec); 81 84 CodeType codeType() const { return FunctionCode; } 82 RefPtr<FunctionBodyNode> body;83 85 84 86 virtual const ClassInfo *classInfo() const { return &info; } 85 87 static const ClassInfo info; 88 86 89 private: 87 90 virtual void processVarDecls(ExecState *exec);
Note:
See TracChangeset
for help on using the changeset viewer.