Changeset 35022 in webkit for trunk/JavaScriptCore/kjs/ArrayConstructor.h
- Timestamp:
- Jul 5, 2008, 10:26:58 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ArrayConstructor.h
r34901 r35022 26 26 namespace KJS { 27 27 28 class ArrayPrototype;29 class FunctionPrototype;28 class ArrayPrototype; 29 class FunctionPrototype; 30 30 31 class ArrayConstructor : public InternalFunction { 32 public: 33 ArrayConstructor(ExecState*, FunctionPrototype*, ArrayPrototype*); 34 virtual ConstructType getConstructData(ConstructData&); 35 virtual CallType getCallData(CallData&); 36 }; 31 class ArrayConstructor : public InternalFunction { 32 public: 33 ArrayConstructor(ExecState*, FunctionPrototype*, ArrayPrototype*); 34 35 virtual ConstructType getConstructData(ConstructData&); 36 virtual CallType getCallData(CallData&); 37 }; 37 38 38 39 } // namespace KJS
Note:
See TracChangeset
for help on using the changeset viewer.