Changeset 49721 in webkit for trunk/JavaScriptCore/runtime/InternalFunction.h
- Timestamp:
- Oct 16, 2009, 6:06:40 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/InternalFunction.h
r49649 r49721 43 43 static PassRefPtr<Structure> createStructure(JSValue proto) 44 44 { 45 return Structure::create(proto, TypeInfo(ObjectType, ImplementsHasInstance));45 return Structure::create(proto, TypeInfo(ObjectType, StructureFlags)); 46 46 } 47 47 48 48 protected: 49 static const unsigned StructureFlags = ImplementsHasInstance | JSObject::StructureFlags; 50 49 51 InternalFunction(NonNullPassRefPtr<Structure> structure) : JSObject(structure) { } 50 52 InternalFunction(JSGlobalData*, NonNullPassRefPtr<Structure>, const Identifier&);
Note:
See TracChangeset
for help on using the changeset viewer.