Changeset 34580 in webkit for trunk/JavaScriptCore/kjs/function_object.h
- Timestamp:
- Jun 15, 2008, 8:02:57 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/function_object.h
r33979 r34580 35 35 * with the Function constructor) 36 36 */ 37 class FunctionPrototype : public InternalFunction Imp{37 class FunctionPrototype : public InternalFunction { 38 38 public: 39 39 FunctionPrototype(ExecState*); … … 47 47 * The initial value of the the global variable's "Function" property 48 48 */ 49 class Function ObjectImp : public InternalFunctionImp{49 class FunctionConstructor : public InternalFunction { 50 50 public: 51 Function ObjectImp(ExecState*, FunctionPrototype*);51 FunctionConstructor(ExecState*, FunctionPrototype*); 52 52 53 53 virtual ConstructType getConstructData(ConstructData&);
Note:
See TracChangeset
for help on using the changeset viewer.