Changeset 37088 in webkit for trunk/JavaScriptCore/kjs/JSGlobalObject.h
- Timestamp:
- Sep 29, 2008, 6:14:26 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSGlobalObject.h
r37086 r37088 149 149 : JSVariableObject(globalData->nullProtoStructureID, new JSGlobalObjectData(this, this)) 150 150 { 151 init( this);151 init(); 152 152 } 153 153 154 154 protected: 155 JSGlobalObject(PassRefPtr<StructureID> structure, JSGlobalObjectData* data , JSObject* globalThisValue)155 JSGlobalObject(PassRefPtr<StructureID> structure, JSGlobalObjectData* data) 156 156 : JSVariableObject(structure, data) 157 157 { 158 init( globalThisValue);158 init(); 159 159 } 160 160 … … 271 271 272 272 private: 273 // FIXME: Fold these functions into the constructor.274 void init( JSObject* thisValue);273 // FIXME: Fold reset into init. 274 void init(); 275 275 void reset(JSValue* prototype); 276 276
Note:
See TracChangeset
for help on using the changeset viewer.