Changeset 34854 in webkit for trunk/JavaScriptCore/kjs/ObjectConstructor.h
- Timestamp:
- Jun 28, 2008, 2:22:01 PM (17 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ObjectConstructor.h
r34853 r34854 19 19 */ 20 20 21 #ifndef _OBJECT_OBJECT_H_22 #define _OBJECT_OBJECT_H_21 #ifndef ObjectConstructor_h 22 #define ObjectConstructor_h 23 23 24 24 #include "JSFunction.h" … … 26 26 namespace KJS { 27 27 28 /** 29 * @internal 30 * 31 * The initial value of Object.prototype (and thus all objects created 32 * with the Object constructor 33 */ 34 class ObjectPrototype : public JSObject { 35 public: 36 ObjectPrototype(ExecState*, FunctionPrototype*); 37 }; 38 39 JSValue* objectProtoFuncToString(ExecState*, JSObject*, JSValue*, const ArgList&); 28 class FunctionPrototype; 29 class ObjectPrototype; 40 30 41 31 /** … … 54 44 } // namespace KJS 55 45 56 #endif // _OBJECT_OBJECT_H_46 #endif // ObjectConstructor_h
Note:
See TracChangeset
for help on using the changeset viewer.