Changeset 47522 in webkit for trunk/JavaScriptCore/runtime/NumberObject.h
- Timestamp:
- Aug 19, 2009, 1:08:08 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/NumberObject.h
r47267 r47522 31 31 32 32 static const ClassInfo info; 33 33 #if USE(JSVALUE32) 34 static PassRefPtr<Structure> createStructure(JSValue prototype) 35 { 36 return Structure::create(prototype, TypeInfo(ObjectType, HasStandardGetOwnPropertySlot)); 37 } 38 #else 34 39 static PassRefPtr<Structure> createStructure(JSValue prototype) 35 40 { 36 41 return Structure::create(prototype, TypeInfo(ObjectType, HasStandardGetOwnPropertySlot | HasDefaultMark)); 37 42 } 38 43 #endif 39 44 private: 40 45 virtual const ClassInfo* classInfo() const { return &info; }
Note:
See TracChangeset
for help on using the changeset viewer.