Changeset 34843 in webkit for trunk/JavaScriptCore/kjs/ArrayConstructor.h
- Timestamp:
- Jun 27, 2008, 9:29:48 PM (17 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ArrayConstructor.h
r34842 r34843 19 19 */ 20 20 21 #ifndef Array Prototype_h22 #define Array Prototype_h21 #ifndef ArrayConstructor_h 22 #define ArrayConstructor_h 23 23 24 #include "JSArray.h"25 24 #include "FunctionPrototype.h" 26 #include "lookup.h"27 25 28 26 namespace KJS { 29 27 30 class ArrayPrototype : public JSArray { 31 public: 32 ArrayPrototype(ExecState*, ObjectPrototype*); 33 34 bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&); 35 virtual const ClassInfo* classInfo() const { return &info; } 36 static const ClassInfo info; 37 }; 28 class ArrayPrototype; 38 29 39 30 class ArrayConstructor : public InternalFunction { … … 46 37 } // namespace KJS 47 38 48 #endif // Array Prototype_h39 #endif // ArrayConstructor_h
Note:
See TracChangeset
for help on using the changeset viewer.