Changeset 48403 in webkit for trunk/JavaScriptCore/runtime/JSWrapperObject.h
- Timestamp:
- Sep 15, 2009, 4:17:19 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSWrapperObject.h
r48331 r48403 39 39 static PassRefPtr<Structure> createStructure(JSValue prototype) 40 40 { 41 return Structure::create(prototype, TypeInfo(ObjectType, HasStandardGetOwnPropertySlot | HasDefaultGetPropertyNames ));41 return Structure::create(prototype, TypeInfo(ObjectType, HasStandardGetOwnPropertySlot | HasDefaultGetPropertyNames | HasDefaultMark)); 42 42 } 43 43 … … 51 51 : JSObject(structure) 52 52 { 53 addAnonymousSlots(1); 54 putAnonymousValue(0, jsNull()); 53 55 } 54 56 … … 58 60 ASSERT(!value.isObject()); 59 61 m_internalValue = value; 62 putAnonymousValue(0, value); 60 63 } 61 64
Note:
See TracChangeset
for help on using the changeset viewer.