Changeset 37747 in webkit for trunk/JavaScriptCore/kjs/InternalFunction.cpp
- Timestamp:
- Oct 20, 2008, 2:27:44 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/InternalFunction.cpp
r37681 r37747 38 38 } 39 39 40 InternalFunction::InternalFunction(JSGlobalData* globalData)41 : JSObject(globalData->nullProtoStructureID)42 {43 putDirect(globalData->propertyNames->name, jsString(globalData, globalData->propertyNames->nullIdentifier.ustring()), DontDelete | ReadOnly | DontEnum);44 }45 46 40 InternalFunction::InternalFunction(JSGlobalData* globalData, PassRefPtr<StructureID> structure, const Identifier& name) 47 41 : JSObject(structure)
Note:
See TracChangeset
for help on using the changeset viewer.