Changeset 49694 in webkit for trunk/JavaScriptCore/runtime/NumberObject.h
- Timestamp:
- Oct 16, 2009, 1:39:46 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/NumberObject.h
r49649 r49694 34 34 static PassRefPtr<Structure> createStructure(JSValue prototype) 35 35 { 36 return Structure::create(prototype, TypeInfo(ObjectType, HasDefaultGetPropertyNames |OverridesMarkChildren));36 return Structure::create(prototype, TypeInfo(ObjectType, OverridesMarkChildren)); 37 37 } 38 38 #else 39 39 static PassRefPtr<Structure> createStructure(JSValue prototype) 40 40 { 41 return Structure::create(prototype, TypeInfo(ObjectType , HasDefaultGetPropertyNames));41 return Structure::create(prototype, TypeInfo(ObjectType)); 42 42 } 43 43 #endif
Note:
See TracChangeset
for help on using the changeset viewer.