Changeset 34854 in webkit for trunk/JavaScriptCore/kjs/FunctionConstructor.h
- Timestamp:
- Jun 28, 2008, 2:22:01 PM (17 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/FunctionConstructor.h
r34853 r34854 21 21 */ 22 22 23 #ifndef Function Prototype_h24 #define Function Prototype_h23 #ifndef FunctionConstructor_h 24 #define FunctionConstructor_h 25 25 26 #include "object_object.h"27 26 #include "JSFunction.h" 28 27 29 28 namespace KJS { 30 29 31 /** 32 * @internal 33 * 34 * The initial value of Function.prototype (and thus all objects created 35 * with the Function constructor) 36 */ 37 class FunctionPrototype : public InternalFunction { 38 public: 39 FunctionPrototype(ExecState*); 40 private: 41 virtual CallType getCallData(CallData&); 42 }; 30 class FunctionPrototype; 43 31 44 32 /** … … 60 48 } // namespace KJS 61 49 62 #endif // _FUNCTION_OBJECT_H_50 #endif // FunctionConstructor_h
Note:
See TracChangeset
for help on using the changeset viewer.