Changeset 49721 in webkit for trunk/JavaScriptCore/runtime/JSFunction.h
- Timestamp:
- Oct 16, 2009, 6:06:40 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSFunction.h
r49694 r49721 62 62 static PassRefPtr<Structure> createStructure(JSValue prototype) 63 63 { 64 return Structure::create(prototype, TypeInfo(ObjectType, OverridesGetOwnPropertySlot | ImplementsHasInstance | OverridesMarkChildren | OverridesGetPropertyNames));64 return Structure::create(prototype, TypeInfo(ObjectType, StructureFlags)); 65 65 } 66 66 … … 72 72 virtual ConstructType getConstructData(ConstructData&); 73 73 virtual CallType getCallData(CallData&); 74 75 protected: 76 const static unsigned StructureFlags = OverridesGetOwnPropertySlot | ImplementsHasInstance | OverridesMarkChildren | OverridesGetPropertyNames | InternalFunction::StructureFlags; 74 77 75 78 private:
Note:
See TracChangeset
for help on using the changeset viewer.