Changeset 49721 in webkit for trunk/JavaScriptCore/runtime/JSVariableObject.h
- Timestamp:
- Oct 16, 2009, 6:06:40 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSVariableObject.h
r49694 r49721 61 61 static PassRefPtr<Structure> createStructure(JSValue prototype) 62 62 { 63 return Structure::create(prototype, TypeInfo(ObjectType, OverridesGetPropertyNames));63 return Structure::create(prototype, TypeInfo(ObjectType, StructureFlags)); 64 64 } 65 65 66 66 protected: 67 static const unsigned StructureFlags = OverridesGetPropertyNames | JSObject::StructureFlags; 67 68 // Subclasses of JSVariableObject can subclass this struct to add data 68 69 // without increasing their own size (since there's a hard limit on the
Note:
See TracChangeset
for help on using the changeset viewer.