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