Changeset 34580 in webkit for trunk/JavaScriptCore/kjs/bool_object.h
- Timestamp:
- Jun 15, 2008, 8:02:57 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/bool_object.h
r33979 r34580 27 27 namespace KJS { 28 28 29 class Boolean Instance: public JSWrapperObject {29 class BooleanObject : public JSWrapperObject { 30 30 public: 31 Boolean Instance(JSObject* proto);31 BooleanObject(JSObject* proto); 32 32 33 33 virtual const ClassInfo* classInfo() const { return &info; } … … 41 41 * with the Boolean constructor 42 42 */ 43 class BooleanPrototype : public Boolean Instance{43 class BooleanPrototype : public BooleanObject { 44 44 public: 45 45 BooleanPrototype(ExecState*, ObjectPrototype*, FunctionPrototype*); … … 51 51 * The initial value of the the global variable's "Boolean" property 52 52 */ 53 class Boolean ObjectImp : public InternalFunctionImp{53 class BooleanConstructor : public InternalFunction { 54 54 public: 55 Boolean ObjectImp(ExecState*, FunctionPrototype*, BooleanPrototype*);55 BooleanConstructor(ExecState*, FunctionPrototype*, BooleanPrototype*); 56 56 57 57 virtual ConstructType getConstructData(ConstructData&);
Note:
See TracChangeset
for help on using the changeset viewer.